mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-26 18:21:56 +00:00
F2 F3 F4 buttons have been restored when numpad targetting is off you can use numpad 1-4 to change intents pressing shift before any of the intent buttons doesn't change intents(for people with shift+1-4 macros) backspace now sets the focus to the chat bar
22 lines
327 B
Plaintext
22 lines
327 B
Plaintext
/datum/admins/key_down(_key, client/user)
|
|
switch(_key)
|
|
if("F5")
|
|
user.get_admin_say()
|
|
return
|
|
if("F6")
|
|
user.admin_ghost()
|
|
return
|
|
if("F7")
|
|
player_panel_new()
|
|
return
|
|
if("F8")
|
|
user.cmd_admin_pm_panel()
|
|
return
|
|
if("F9")
|
|
user.stealth()
|
|
return
|
|
if("F10")
|
|
user.get_dead_say()
|
|
return
|
|
..()
|