Files
vgstation13/code/modules/admin/verbs/MC.dm
2011-08-09 13:01:34 +00:00

10 lines
299 B
Plaintext

/client/proc/restartcontroller()
set category = "Debug"
set name = "Restart Master Controller"
switch(alert("Are you sure? If the control is still running it will now be running twice.",,"Yes","No"))
if("Yes")
spawn(0)
master_controller.process()
if("No")
return 0
return