mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
Several of the greps were missing the `-P` switch which caused them to fail to match things. The EOL grep also wasn't working right so I replaced it with the one I added to TGMC.
19 lines
340 B
Plaintext
19 lines
340 B
Plaintext
/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("help")
|
|
return
|
|
if("2")
|
|
a_intent_change("disarm")
|
|
return
|
|
if("3")
|
|
a_intent_change("grab")
|
|
return
|
|
if("4")
|
|
a_intent_change("harm")
|
|
return
|
|
return ..()
|