moves all subsystems to length (#19168)

This commit is contained in:
Kashargul
2026-02-15 15:34:14 +01:00
committed by GitHub
parent ae6f945e05
commit a55b487389
50 changed files with 266 additions and 269 deletions
@@ -12,8 +12,8 @@ PROCESSING_SUBSYSTEM_DEF(obj_tab_items)
//cache for sanic speed (lists are references anyways)
var/list/current_run = currentrun
while(current_run.len)
var/datum/thing = current_run[current_run.len]
while(length(current_run))
var/datum/thing = current_run[length(current_run)]
if(QDELETED(thing))
processing -= thing
else if(thing.process(wait * 0.1) == PROCESS_KILL)