From f1eb830ee27443ac63fc1c5d1ec24e96c560a8a2 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Fri, 25 Aug 2023 10:00:47 -0500 Subject: [PATCH] allows runtime access to view mc tabs (#22085) * allows runtime access to view mc tabs * scrung * blow up all the admins --- code/modules/admin/admin_verbs.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index b21e5b725b2..667f07d1e6f 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -69,7 +69,6 @@ GLOBAL_LIST_INIT(admin_verbs_admin, list( /client/proc/ccbdb_lookup_ckey, /client/proc/view_instances, /client/proc/start_vote, - /client/proc/toggle_mctabs, /client/proc/ping_all_admins, /client/proc/show_watchlist )) @@ -180,7 +179,8 @@ GLOBAL_LIST_INIT(admin_verbs_debug, list( /client/proc/timer_log, /client/proc/debug_timers, /client/proc/force_verb_bypass, - /client/proc/show_gc_queues + /client/proc/show_gc_queues, + /client/proc/toggle_mctabs )) GLOBAL_LIST_INIT(admin_verbs_possess, list( /proc/possess, @@ -295,6 +295,7 @@ GLOBAL_LIST_INIT(admin_verbs_maintainer, list( verbs += /client/proc/debug_variables /*allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify*/ verbs += /client/proc/ss_breakdown verbs += /client/proc/show_gc_queues + verbs += /client/proc/toggle_mctabs spawn(1) // This setting exposes the profiler for people with R_VIEWRUNTIMES. They must still have it set in cfg/admin.txt control_freak = 0