mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
20 lines
404 B
Plaintext
20 lines
404 B
Plaintext
// yogs - Replicated for custom keybindings
|
|
/mob/living/carbon/key_down(_key, client/user)
|
|
switch(_key)
|
|
if("R", "Southwest") // Southwest is End
|
|
toggle_throw_mode()
|
|
return
|
|
if("1")
|
|
a_intent_change(INTENT_HELP)
|
|
return
|
|
if("2")
|
|
a_intent_change(INTENT_DISARM)
|
|
return
|
|
if("3")
|
|
a_intent_change(INTENT_GRAB)
|
|
return
|
|
if("4")
|
|
a_intent_change(INTENT_HARM)
|
|
return
|
|
return ..()
|