diff --git a/code/controllers/master_controller.dm b/code/controllers/master_controller.dm index 0152af8b13..667f6ced0d 100644 --- a/code/controllers/master_controller.dm +++ b/code/controllers/master_controller.dm @@ -49,6 +49,11 @@ datum/controller/game_controller/proc/setup_objects() sleep(-1) for(var/atom/movable/object in world) object.initialize() + + world << "Initializing pipe networks", R_DEBUG) sleep(-1) diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm index 9670bfc75a..6c064cdb1b 100644 --- a/code/game/area/areas.dm +++ b/code/game/area/areas.dm @@ -20,7 +20,11 @@ ..() -// spawn(15) +/area/proc/initialize() + if(!requires_power || !apc)) + power_light = 0 + power_equip = 0 + power_environ = 0 power_change() // all machines set to current power level, also updates lighting icon /area/proc/get_contents()