mirror of
https://github.com/KabKebab/GS13.git
synced 2026-04-06 03:21:17 +01:00
14 lines
256 B
Plaintext
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 ..()
|