From 42d138d0a0ace80fd00cfe5f1248fd6687b3cdac Mon Sep 17 00:00:00 2001 From: "elly1989@rocketmail.com" Date: Tue, 25 Sep 2012 14:22:18 +0000 Subject: [PATCH] Deleting more obsolete code. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4756 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/admin/verbs/MC.dm | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 code/modules/admin/verbs/MC.dm diff --git a/code/modules/admin/verbs/MC.dm b/code/modules/admin/verbs/MC.dm deleted file mode 100644 index 1a30b6f62aa..00000000000 --- a/code/modules/admin/verbs/MC.dm +++ /dev/null @@ -1,21 +0,0 @@ -/client/proc/restartcontroller() - set category = "Debug" - set name = "Restart Master Controller" - if(!holder) return - switch(alert("Are you sure? If the control is still running it will now be running twice.",,"Yes","No")) - if("Yes") - src = null - usr = null //weird things were happening after restarting MC. - spawn(0) - master_controller.process() - if("No") - return 0 - feedback_add_details("admin_verb","RMC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! - return - -/client/proc/debug_master_controller() - set category = "Debug" - set name = "Debug Master Controller" - debug_variables(master_controller) - feedback_add_details("admin_verb","DMC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! - return \ No newline at end of file