From 6f970b16e295e4daffb5fa9d7c28b81b03505307 Mon Sep 17 00:00:00 2001 From: Teteshnik1 <149588524+Teteshnik1@users.noreply.github.com> Date: Sun, 20 Oct 2024 12:44:39 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BC-=D0=B4=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mods/ssinput/code/keybindings/living.dm | 10 ++++++++++ 1 file changed, 10 insertions(+) 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")