diff --git a/code/ZAS/FEA_system.dm b/code/ZAS/FEA_system.dm index 73a839c2b88..3288ba846a9 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_adminwarn("ZASALERT: 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,14 @@ datum Z.last_update = current_cycle if(. && Z && !output) . = 0 - log_adminwarn("ZASALERT: unable run zone/process(), [Z.progress]") + log_admin("ZASALERT: unable run zone/process(), [Z.progress]") + message_admins("ZASALERT. ZASALERT: unable run zone/proc/process(), [Z.progress], tell someone about this!") tick_progress = "active_hotspots (fire)" for(var/obj/fire/F in active_hotspots) var/output = F.process() if(. && F && !output) . = 0 - log_adminwarn("ZASALERT: Unable run obj/fire/process()") + log_admin("ZASALERT: Unable run obj/fire/process()") tick_progress = "success" \ No newline at end of file diff --git a/code/game/master_controller.dm b/code/game/master_controller.dm index b098ba3393e..0d049707a14 100644 --- a/code/game/master_controller.dm +++ b/code/game/master_controller.dm @@ -176,7 +176,7 @@ datum/controller/game_controller air_master.current_cycle++ var/success = air_master.tick() //Changed so that a runtime does not crash the ticker. if(!success) //Runtimed. - log_adminwarn("ZASALERT: air_system/tick() failed: [air_master.tick_progress]") + log_admin("ZASALERT: air_system/tick() failed: [air_master.tick_progress]") air_master.failed_ticks++ if(air_master.failed_ticks > 10) world << "RUNTIMES IN ATMOS TICKER. Killing air simulation!"