mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-11 01:51:51 +00:00
* Lets get this show on the road
* Now were talking
* These matter
* Oh the joys of CI testing
* And this
* Wrong version
* Tweaks
* More tweaks
* Lets document this
* This too
* Upgrades this
* Fixed some sanity issues
* This too
* Screw it, this too
* More sanity
* And these
* This too
* Documentation
* This too
* Fixes **awful** scoreboard logic
* Why do we care about only half-absorbing someone
* Revert "Why do we care about only half-absorbing someone"
This reverts commit 8de1cfdf05.
* Refactors these
* Hashing
* Moxian tweaks
36 lines
1.2 KiB
Plaintext
36 lines
1.2 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/ticklag,
|
|
/client/proc/cmd_admin_grantfullaccess,
|
|
/client/proc/cmd_admin_areatest,
|
|
/client/proc/cmd_admin_rejuvenate,
|
|
/datum/admins/proc/show_traitor_panel,
|
|
/client/proc/print_jobban_old,
|
|
/client/proc/print_jobban_old_filter,
|
|
/client/proc/forceEvent,
|
|
/client/proc/admin_redo_space_transitions,
|
|
/client/proc/make_turf_space_map,
|
|
/client/proc/vv_by_ref
|
|
))
|
|
|
|
// 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!
|