[MIRROR] List Them Out - A Modern Revision On Extracting Global Lists [MDB IGNORE] (#16531)

* List Them Out - A Modern Revision On Extracting Global Lists (#70080)

Co-authored-by: John Willard <53777086+JohnFulpWillard@ users.noreply.github.com>

* List Them Out - A Modern Revision On Extracting Global Lists

Co-authored-by: san7890 <the@san7890.com>
Co-authored-by: John Willard <53777086+JohnFulpWillard@ users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-09-29 22:44:53 -07:00
committed by GitHub
co-authored by John Willard san7890
parent 20ae59750a
commit 235ca1df15
5 changed files with 159 additions and 65 deletions
+54
View File
@@ -89,6 +89,12 @@ GLOBAL_PROTECT(admin_verbs_admin)
/datum/admins/proc/paintings_manager,
/datum/admins/proc/display_tags,
/datum/admins/proc/fishing_calculator,
/client/proc/list_bombers,
/client/proc/list_signalers,
/client/proc/list_law_changes,
/client/proc/show_manifest,
/client/proc/list_dna,
/client/proc/list_fingerprints,
)
GLOBAL_LIST_INIT(admin_verbs_ban, list(/client/proc/unban_panel, /client/proc/ban_panel, /client/proc/stickybanpanel))
GLOBAL_PROTECT(admin_verbs_ban)
@@ -378,6 +384,54 @@ GLOBAL_PROTECT(admin_verbs_poll)
message_admins("[key_name_admin(usr)] checked antagonists.")
SSblackbox.record_feedback("tally", "admin_verb", 1, "Check Antagonists") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/list_bombers()
set name = "List Bombers"
set category = "Admin.Game"
if(!holder)
return
holder.list_bombers()
SSblackbox.record_feedback("tally", "admin_verb", 1, "List Bombers") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/list_signalers()
set name = "List Signalers"
set category = "Admin.Game"
if(!holder)
return
holder.list_signalers()
SSblackbox.record_feedback("tally", "admin_verb", 1, "List Signalers") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/list_law_changes()
set name = "List Law Changes"
set category = "Debug"
if(!holder)
return
holder.list_law_changes()
SSblackbox.record_feedback("tally", "admin_verb", 1, "List Law Changes") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/show_manifest()
set name = "Show Manifest"
set category = "Debug"
if(!holder)
return
holder.show_manifest()
SSblackbox.record_feedback("tally", "admin_verb", 1, "Show Manifest") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/list_dna()
set name = "List DNA"
set category = "Debug"
if(!holder)
return
holder.list_dna()
SSblackbox.record_feedback("tally", "admin_verb", 1, "List DNA") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/list_fingerprints()
set name = "List Fingerprints"
set category = "Debug"
if(!holder)
return
holder.list_fingerprints()
SSblackbox.record_feedback("tally", "admin_verb", 1, "List Fingerprints") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/ban_panel()
set name = "Banning Panel"
set category = "Admin"