From 461f90a0ea903251175e3aff0697875487367288 Mon Sep 17 00:00:00 2001 From: Katherine Kiefer Date: Tue, 12 Mar 2024 15:29:22 +1100 Subject: [PATCH] hmmmph --- code/controllers/master.dm | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/code/controllers/master.dm b/code/controllers/master.dm index d46799e613..8a1314edac 100644 --- a/code/controllers/master.dm +++ b/code/controllers/master.dm @@ -209,7 +209,9 @@ GLOBAL_REAL(Master, /datum/controller/master) = new for (var/datum/controller/subsystem/SS in subsystems) if (SS.flags & SS_NO_INIT || SS.initialized) //Don't init SSs with the correspondig flag or if they already are initialzized continue + log_world("Initializing [SS]") SS.Initialize(REALTIMEOFDAY) + log_world("Initialized [SS]") CHECK_TICK current_ticklimit = TICK_LIMIT_RUNNING var/time = (REALTIMEOFDAY - start_timeofday) / 10 @@ -307,12 +309,6 @@ GLOBAL_REAL(Master, /datum/controller/master) = new queue_tail = null //these sort by lower priorities first to reduce the number of loops needed to add subsequent SS's to the queue //(higher subsystems will be sooner in the queue, adding them later in the loop means we don't have to loop thru them next queue add) - for(var/item in tickersubsystems) - WARNING("[tickersubsystems], item: [item]") - if(islist(item)) - for(var/list_item in item) - WARNING("[item], item: [list_item]") - sortTim(tickersubsystems, GLOBAL_PROC_REF(cmp_subsystem_priority)) for(var/I in runlevel_sorted_subsystems) sortTim(runlevel_sorted_subsystems, GLOBAL_PROC_REF(cmp_subsystem_priority))