Files
GS13/modular_citadel/code/modules/keybindings/bindings_robot.dm
2019-09-23 18:26:34 +02:00

14 lines
256 B
Plaintext

/mob/living/silicon/robot/key_down(_key, client/user)
switch(_key)
if("Shift")
sprint_hotkey(TRUE)
return
return ..()
/mob/living/silicon/robot/key_up(_key, client/user)
switch(_key)
if("Shift")
sprint_hotkey(FALSE)
return
return ..()