This commit is contained in:
Fox McCloud
2019-05-13 17:22:57 -04:00
parent c639b5d0f6
commit 68effd9d83
23 changed files with 80 additions and 1125 deletions
+7 -2
View File
@@ -1,5 +1,10 @@
GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
/**
* Failsafe
*
* Pretty much pokes the MC to make sure it's still alive.
**/
GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
/datum/controller/failsafe // This thing pretty much just keeps poking the master controller
name = "Failsafe"
@@ -92,6 +97,6 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
/datum/controller/failsafe/stat_entry()
if(!statclick)
statclick = new/obj/effect/statclick/debug(src, "Initializing...")
statclick = new/obj/effect/statclick/debug(null, "Initializing...", src)
stat("Failsafe Controller:", statclick.update("Defcon: [defcon_pretty()] (Interval: [Failsafe.processing_interval] | Iteration: [Failsafe.master_iteration])"))