mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
- added feedback logging for newscasters - added feedback logging for admin verbs - added shuttle timers to escape pods - added feedback logging to chemical reactions - clipboard can now fit on your belt git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3465 316c924e-a436-60f5-8080-3fe189b3f50e
22 lines
874 B
Plaintext
22 lines
874 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
|
|
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"
|
|
switch(alert("Debug Master Controller or Failsafe?" ,, "Master Controller" , "Failsafe"))
|
|
if("Master Controller")
|
|
debug_variables(master_controller)
|
|
if("Failsafe")
|
|
debug_variables(Failsafe)
|
|
feedback_add_details("admin_verb","DMC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
|
return |