mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-04 14:42:56 +00:00
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
21 lines
422 B
Plaintext
21 lines
422 B
Plaintext
/mob/living/carbon/key_down(_key, client/user)
|
|
user.keys_held[_key] = world.time
|
|
if(!user.keys_held["Shift"])
|
|
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 ..()
|