Address Fox's concerns

This commit is contained in:
tigercat2000
2018-03-22 15:39:41 -07:00
parent b14faa19c3
commit 47f1e2c1e4
4 changed files with 11 additions and 8 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
var/global/datum/controller/failsafe/Failsafe
GLOBAL_REAL(Failsafe, /datum/controller/failsafe)
/datum/controller/failsafe // This thing pretty much just keeps poking the master controller
+1 -1
View File
@@ -405,7 +405,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
if(SS_flags & SS_NO_FIRE)
subsystemstocheck -= SS
continue
if(!(SS_flags & SS_TICKER) && (SS_flags & SS_KEEP_TIMING) && SS.last_fire + (SS.wait * 0.75) > world.time)
if((SS_flags & (SS_TICKER|SS_KEEP_TIMING)) == SS_KEEP_TIMING && SS.last_fire + (SS.wait * 0.75) > world.time)
continue
SS.enqueue()
. = 1