Adds Datum Tagging for admins (#62982)

This commit is contained in:
Ryll Ryll
2021-12-21 14:00:46 -08:00
committed by GitHub
parent 6e3cacac38
commit 45eb682ee6
14 changed files with 212 additions and 2 deletions
+14
View File
@@ -130,3 +130,17 @@
return
user.readmin()
return TRUE
/datum/keybinding/admin/view_tags
hotkey_keys = list("F9")
name = "view_tags"
full_name = "View Tags"
description = "Open the View-Tags menu"
keybind_signal = COMSIG_KB_ADMIN_VIEWTAGS_DOWN
/datum/keybinding/admin/view_tags/down(client/user)
. = ..()
if(.)
return
user.holder?.display_tags()
return TRUE