mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-19 23:01:35 +00:00
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
GLOBAL_LIST_INIT(admin_verbs_show_debug_verbs, list(
|
|
/client/proc/camera_view,
|
|
/client/proc/sec_camera_report,
|
|
/client/proc/intercom_view,
|
|
/client/proc/Cell, //More air things
|
|
/client/proc/atmosscan, //check plumbing
|
|
/client/proc/powerdebug, //check power
|
|
/client/proc/count_objects_on_z_level,
|
|
/client/proc/count_objects_all,
|
|
/client/proc/cmd_assume_direct_control,
|
|
/client/proc/startSinglo,
|
|
/client/proc/cmd_admin_grantfullaccess,
|
|
/client/proc/cmd_admin_areatest,
|
|
/client/proc/cmd_admin_rejuvenate,
|
|
/datum/admins/proc/show_traitor_panel,
|
|
/client/proc/forceEvent,
|
|
/client/proc/admin_redo_space_transitions,
|
|
/client/proc/make_turf_space_map,
|
|
))
|
|
|
|
// Would be nice to make this a permanent admin pref so we don't need to click it each time
|
|
/client/proc/enable_debug_verbs()
|
|
set category = "Debug"
|
|
set name = "Debug verbs"
|
|
|
|
if(!check_rights(R_DEBUG))
|
|
return
|
|
|
|
verbs += GLOB.admin_verbs_show_debug_verbs
|
|
|
|
SSblackbox.record_feedback("tally", "admin_verb", 1, "Debug Verbs") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|