From d1f645d44e586dbcb7493d1e95c6be1964dafbde Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 30 Aug 2022 00:11:49 +0200 Subject: [PATCH] [MIRROR] adds logging for the Aurora Caelus oven ignition [MDB IGNORE] (#15921) * adds logging for the Aurora Caelus oven ignition (#69525) About The Pull Request So apparently during the Aurora Caelus event there's a 1% chance that the oven in the kitchen ignites. This adds logging for when that does end up happening. Why It's Good For The Game Not having this logged can make it really hard to investigate why the entire kitchen burned down. I only found out that this caused the fire because I happened to be in view and saw an "oh egads" balloon alert for a split second. I almost thought I imagined it or something and it turns out it's a simpsons joke... * adds logging for the Aurora Caelus oven ignition Co-authored-by: kawoppi <94711066+kawoppi@users.noreply.github.com> --- code/modules/events/aurora_caelus.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/events/aurora_caelus.dm b/code/modules/events/aurora_caelus.dm index 291011ad6c6..842ff30e929 100644 --- a/code/modules/events/aurora_caelus.dm +++ b/code/modules/events/aurora_caelus.dm @@ -44,6 +44,8 @@ roast_ruiner.balloon_alert_to_viewers("oh egads!") var/turf/ruined_roast = get_turf(roast_ruiner) ruined_roast.atmos_spawn_air("plasma=100;TEMP=1000") + message_admins("Aurora Caelus event caused an oven to ignite at [ADMIN_VERBOSEJMP(ruined_roast)].") + log_game("Aurora Caelus event caused an oven to ignite at [loc_name(ruined_roast)].") for(var/mob/living/carbon/human/seymour as anything in GLOB.human_list) if(seymour.mind && istype(seymour.mind.assigned_role, /datum/job/cook)) seymour.say("My roast is ruined!!!", forced = "ruined roast")