mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Other than that just a few minor fixes git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1998 316c924e-a436-60f5-8080-3fe189b3f50e
10 lines
299 B
Plaintext
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 |