mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Remove the goonstation /datum/controller/processScheduler as it is no longer used.
This commit is contained in:
@@ -108,28 +108,3 @@
|
||||
feedback_add_details("admin_verb", "DebugController")
|
||||
message_admins("Admin [key_name_admin(mob)] is debugging the [pick] controller.")
|
||||
debug_variables(D)
|
||||
|
||||
//VOREStation Edit Begin
|
||||
/client/proc/debug_process_scheduler()
|
||||
set category = "Debug"
|
||||
set name = "Debug Process Scheduler"
|
||||
set desc = "Debug the process scheduler itself. For vulpine use only."
|
||||
|
||||
if(!check_rights(R_DEBUG)) return
|
||||
if(config.debugparanoid && !check_rights(R_ADMIN)) return
|
||||
debug_variables(processScheduler)
|
||||
feedback_add_details("admin_verb", "DProcSchd")
|
||||
message_admins("Admin [key_name_admin(usr)] is debugging the process scheduler.")
|
||||
|
||||
/client/proc/debug_process(controller in processScheduler.nameToProcessMap)
|
||||
set category = "Debug"
|
||||
set name = "Debug Process Controller"
|
||||
set desc = "Debug one of the periodic loop background task controllers for the game (be careful!)"
|
||||
|
||||
if(!check_rights(R_DEBUG)) return
|
||||
if(config.debugparanoid && !check_rights(R_ADMIN)) return
|
||||
var/datum/controller/process/P = processScheduler.nameToProcessMap[controller]
|
||||
debug_variables(P)
|
||||
feedback_add_details("admin_verb", "DProcCtrl")
|
||||
message_admins("Admin [key_name_admin(usr)] is debugging the [controller] controller.")
|
||||
//VOREStation Edit End
|
||||
Reference in New Issue
Block a user