fixes some things breaking from last sync (#4078)

* logs

* that

* this

* this
This commit is contained in:
silicons
2022-05-18 20:11:52 -07:00
committed by GitHub
parent 84929e3f34
commit 237a184c7f
56 changed files with 88 additions and 88 deletions
@@ -3,7 +3,7 @@
SUBSYSTEM_DEF(processing)
name = "Processing"
priority = FIRE_PRIORITY_PROCESS
flags = SS_BACKGROUND|SS_POST_FIRE_TIMING|SS_NO_INIT
subsystem_flags = SS_BACKGROUND|SS_POST_FIRE_TIMING|SS_NO_INIT
wait = 1 SECONDS
var/stat_tag = "P" //Used for logging
@@ -19,7 +19,7 @@ SUBSYSTEM_DEF(processing)
currentrun = processing.Copy()
//cache for sanic speed (lists are references anyways)
var/list/current_run = currentrun
var/dt = (flags & SS_TICKER)? (wait * world.tick_lag * 0.1) : (wait * 0.1)
var/dt = (subsystem_flags & SS_TICKER)? (wait * world.tick_lag * 0.1) : (wait * 0.1)
while(current_run.len)
var/datum/thing = current_run[current_run.len]