From fb6ab23189e730fe1e58a1ab49ca54c5835c744a Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Mon, 10 Aug 2015 17:44:52 +0200 Subject: [PATCH] Makes the new initialization message use the proper method. --- code/controllers/master_controller.dm | 4 ++-- code/game/area/areas.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/controllers/master_controller.dm b/code/controllers/master_controller.dm index 667f6ced0d8..b0f6c5099be 100644 --- a/code/controllers/master_controller.dm +++ b/code/controllers/master_controller.dm @@ -49,8 +49,8 @@ datum/controller/game_controller/proc/setup_objects() sleep(-1) for(var/atom/movable/object in world) object.initialize() - - world << "Initializing areas", R_DEBUG) sleep(-1) for(var/area/area in all_areas) area.initialize() diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm index 6c064cdb1be..19746eeef76 100644 --- a/code/game/area/areas.dm +++ b/code/game/area/areas.dm @@ -21,7 +21,7 @@ ..() /area/proc/initialize() - if(!requires_power || !apc)) + if(!requires_power || !apc) power_light = 0 power_equip = 0 power_environ = 0