From 8f78098bf6aa6a13f31392d9bcbf98224c211021 Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Sun, 31 Dec 2023 20:20:38 +0000 Subject: [PATCH] and some spacing here --- code/modules/admin/topic/topic_events.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/admin/topic/topic_events.dm b/code/modules/admin/topic/topic_events.dm index 8c0cd2ca6678..e18d6e8d5df8 100644 --- a/code/modules/admin/topic/topic_events.dm +++ b/code/modules/admin/topic/topic_events.dm @@ -205,6 +205,7 @@ em_call.mob_max = humans.len em_call.players_to_offer = humans em_call.owner = owner + var/quiet_launch = TRUE var/ql_prompt = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) if(ql_prompt == "Yes") @@ -214,6 +215,7 @@ var/ar_prompt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) if(ar_prompt == "Yes") announce_receipt = TRUE + log_debug("ERT DEBUG (CUSTOM SET): [quiet_launch] - [announce_receipt]") em_call.activate(quiet_launch, announce_receipt)