Files
Bubberstation/code/modules/keybindings/bindings_admin.dm
Leo 8f70453d30 Fixes outdated admin hotkeys (#33505)
F7 is buildmode again
F8 invisimin and control + f8 is stealth mode
2017-12-14 04:43:55 -05:00

19 lines
298 B
Plaintext

/datum/admins/key_down(_key, client/user)
switch(_key)
if("F5")
user.admin_ghost()
return
if("F6")
player_panel_new()
return
if("F7")
user.togglebuildmodeself()
return
if("F8")
if(user.keys_held["Ctrl"])
user.stealth()
else
user.invisimin()
return
..()