diff --git a/mods/ssinput/code/keybindings/living.dm b/mods/ssinput/code/keybindings/living.dm index e4777f1f30da3..a61eded97b7e4 100644 --- a/mods/ssinput/code/keybindings/living.dm +++ b/mods/ssinput/code/keybindings/living.dm @@ -18,6 +18,16 @@ L.lay_down() return TRUE +/datum/keybinding/mob/face_direction + hotkey_keys = list("]") + name = "face_direction" + full_name = "Face Direction" + description = "Block dir" + +/datum/keybinding/mob/face_direction/down(client/user) + var/mob/living/L = user.mob + L.set_face_dir() + return TRUE /datum/keybinding/living/resist hotkey_keys = list("B")