mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-08-29 15:46:22 +01:00
14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
/mob/living/carbon/human/key_down(_key, client/user)
|
|
switch(_key)
|
|
if("Shift")
|
|
sprint_hotkey(TRUE)
|
|
return
|
|
return ..()
|
|
|
|
/mob/living/carbon/human/key_up(_key, client/user)
|
|
switch(_key)
|
|
if("Shift")
|
|
sprint_hotkey(FALSE)
|
|
return
|
|
return ..()
|