* adjuststaminabuffer() now drains borg cells, borgs can now sprint, removes aiming down sights, combat mode now makes you face your cursor * forgot to ctrl+s here
14 lines
245 B
Plaintext
14 lines
245 B
Plaintext
/mob/living/silicon/robot/key_down(_key, client/user)
|
|
switch(_key)
|
|
if("Shift")
|
|
togglesprint()
|
|
return
|
|
return ..()
|
|
|
|
/mob/living/silicon/robot/key_up(_key, client/user)
|
|
switch(_key)
|
|
if("Shift")
|
|
togglesprint()
|
|
return
|
|
return ..()
|