From 0fe99d3b6d98a8fdcf48fc2ab1312e498e68c337 Mon Sep 17 00:00:00 2001 From: Cael_Aislinn Date: Fri, 10 Aug 2012 01:24:40 +1000 Subject: [PATCH] actually make the debug messages output >.> also fixed up a couple of messages Signed-off-by: Cael_Aislinn --- code/ZAS/FEA_system.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/ZAS/FEA_system.dm b/code/ZAS/FEA_system.dm index c1c380d8fd5..0dbf12e640d 100644 --- a/code/ZAS/FEA_system.dm +++ b/code/ZAS/FEA_system.dm @@ -184,7 +184,7 @@ datum var/output = T.update_air_properties() if(. && T && !output) . = 0 //If a runtime occured, make sure we can sense it. - log_admin("ZASALERT: Either a null turf in list/tiles_to_update, or unable run turf/simualted/update_air_properties()") + log_admin("ZASALERT: Unable run turf/simualted/update_air_properties()") tiles_to_update = list() tick_progress = "connections_to_check" @@ -207,13 +207,13 @@ datum Z.last_update = current_cycle if(. && Z && !output) . = 0 - log_admin("ZASALERT: Either a null zone in list/zones, or unable run zone/process()") + log_admin("ZASALERT: unable run zone/process(), [Z.progress]") tick_progress = "active_hotspots (fire)" for(var/obj/fire/F in active_hotspots) var/output = F.process() if(. && F && !output) . = 0 - log_admin("ZASALERT: Either a null fire in list/active_hotspots, or unable run obj/fire/process()") + log_admin("ZASALERT: Unable run obj/fire/process()") tick_progress = "success" \ No newline at end of file