From 7984a86d19ed300133b1eb07a9e092f7e38eff17 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Fri, 21 Oct 2022 13:05:12 -0500 Subject: [PATCH] Blob report/CC detonation request is now logged (#19401) * Blob report is now logged * better punctuation * Implements Ryan's suggestion --- code/game/gamemodes/blob/blob_report.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/gamemodes/blob/blob_report.dm b/code/game/gamemodes/blob/blob_report.dm index 91ebf25a66c..296e3f53cd9 100644 --- a/code/game/gamemodes/blob/blob_report.dm +++ b/code/game/gamemodes/blob/blob_report.dm @@ -10,6 +10,8 @@ if(bomb && bomb.r_code) if(is_station_level(bomb.z)) bomb.r_code = nukecode + message_admins("50 minutes have passed since the first blob has burst, the station is automatically receiving nuclear codes and an order to detonate the station. Codes are: [nukecode].") + log_admin("50 minutes have passed since the first blob has burst, the station is automatically receiving nuclear codes and an order to detonate the station. Codes are: [nukecode].") interceptname = "Classified NAS Trurl Update" intercepttext += "Nanotrasen Update: Biohazard Alert.
" @@ -26,6 +28,8 @@ var/law = "The station is under quarantine. Do not permit anyone to leave. Disregard laws 1-3 if necessary to prevent, by any means necessary, anyone from leaving. The nuclear failsafe must be activated at any cost, the code is: [nukecode]." aiPlayer.set_zeroth_law(law) to_chat(aiPlayer, "Laws Updated: [law]") + message_admins("The station AI has received a new law zero due to a blob round continuing for over 50 minutes after initial burst. Zero Law: [law]") + log_admin("The station AI has received a new law zero due to a blob round continuing for over 50 minutes after initial burst. Zero Law: [law]") print_command_report(intercepttext, interceptname, FALSE) GLOB.event_announcement.Announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/AI/commandreport.ogg', from = "NAS Trurl Update")