From 38cbff3638afcb772c46b9d0e727e9ee20699569 Mon Sep 17 00:00:00 2001 From: Tad Hardesty Date: Mon, 26 Mar 2018 19:17:20 -0700 Subject: [PATCH] Fix some debug verbs lingering after deadmin (#36683) --- code/modules/admin/admin_verbs.dm | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index f62e55c854f..4569912d61e 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -284,22 +284,8 @@ GLOBAL_LIST_INIT(admin_verbs_hideable, list( /client/proc/play_web_sound, GLOB.admin_verbs_spawn, /*Debug verbs added by "show debug verbs"*/ - /client/proc/Cell, - /client/proc/camera_view, - /client/proc/sec_camera_report, - /client/proc/intercom_view, - /client/proc/air_status, - /client/proc/atmosscan, - /client/proc/powerdebug, - /client/proc/count_objects_on_z_level, - /client/proc/count_objects_all, - /client/proc/cmd_assume_direct_control, - /client/proc/startSinglo, - /client/proc/set_server_fps, - /client/proc/cmd_admin_grantfullaccess, - /client/proc/cmd_admin_areatest_all, - /client/proc/cmd_admin_areatest_station, - /client/proc/cmd_admin_test_atmos_controllers, + GLOB.admin_verbs_debug_mapping, + /client/proc/disable_debug_verbs, /client/proc/readmin )