mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
13 lines
283 B
Plaintext
13 lines
283 B
Plaintext
// yogs - Replicated for custom keybindings
|
|
/mob/living/silicon/robot/key_down(_key, client/user)
|
|
switch(_key)
|
|
if("1", "2", "3")
|
|
toggle_module(text2num(_key))
|
|
return
|
|
if("4")
|
|
a_intent_change(INTENT_HOTKEY_LEFT)
|
|
return
|
|
if("Q")
|
|
uneq_active()
|
|
return
|
|
return ..() |