From bdf4d72226a68e6553361093c1c25bc8a47fe322 Mon Sep 17 00:00:00 2001 From: DragonTrance Date: Sat, 12 Nov 2022 14:26:42 -0500 Subject: [PATCH] of course --- code/modules/keybindings/bindings_mob.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/keybindings/bindings_mob.dm b/code/modules/keybindings/bindings_mob.dm index 96c7f2571..069e23da2 100644 --- a/code/modules/keybindings/bindings_mob.dm +++ b/code/modules/keybindings/bindings_mob.dm @@ -84,10 +84,11 @@ /// Mostly used for pixel shift right now /mob/keyLoop(client/user) - var/direction = NONE - for(var/_key in user.keys_held) - direction = direction | SSinput.movement_keys[_key] + ..() //Oops! You need this to move, don't you? if(user.keys_held["Ctrl"] && user.keys_held["Shift"]) + var/direction = NONE + for(var/_key in user.keys_held) + direction = direction | SSinput.movement_keys[_key] switch(direction) if(NORTH) northshift()