Files
GS13/code/modules/keybindings/bindings_carbon.dm
Lin 6810aa0a94 Merge pull request #10214 from Ghommie/Ghommie-cit472
Brings carbon action intent hotkeys down to living.
2021-01-04 01:31:40 -03:00

9 lines
193 B
Plaintext

/mob/living/carbon/key_down(_key, client/user)
switch(_key)
if("R", "Southwest") // Southwest is End
toggle_throw_mode()
return
if("C")
toggle_combat_mode()
return
return ..()