From 37e2be09feb17740e5a01e047ba9f759dfd4ff4a Mon Sep 17 00:00:00 2001 From: Rhials <28870487+Rhials@users.noreply.github.com> Date: Mon, 17 Jul 2023 18:19:53 -0400 Subject: [PATCH] Fixes punctuation on the flux anomaly announcement (#76874) ## About The Pull Request Fixes an errant period between two text defines. ANOMALY_ANNOUNCE_DANGEROUS_TEXT ends with "Detected location:" and is expected to be followed up with by the impact area, not a period. ## Why It's Good For The Game Makes one sentence slightly more readable. ## Changelog :cl: Rhials spellcheck: removes an errant period from the flux anomaly announcement. /:cl: --- code/modules/events/anomaly/anomaly_flux.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/anomaly/anomaly_flux.dm b/code/modules/events/anomaly/anomaly_flux.dm index 41481a9ef1a..785217f3b7a 100644 --- a/code/modules/events/anomaly/anomaly_flux.dm +++ b/code/modules/events/anomaly/anomaly_flux.dm @@ -15,4 +15,4 @@ anomaly_path = /obj/effect/anomaly/flux /datum/round_event/anomaly/anomaly_flux/announce(fake) - priority_announce("Hyper-energetic flux wave detected on [ANOMALY_ANNOUNCE_DANGEROUS_TEXT]. [impact_area.name].", "Anomaly Alert") + priority_announce("Hyper-energetic flux wave detected on [ANOMALY_ANNOUNCE_DANGEROUS_TEXT] [impact_area.name].", "Anomaly Alert")