From ad4696a564e0fc5ebe95ef30a23fdfa44f564dac Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 27 May 2022 17:45:40 +0100 Subject: [PATCH] Scrubber clog event no longer happens in the recreation area area (#67304) * Fixes scrubber clog event from saying 'area' twice. --- code/modules/events/scrubber_clog.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/scrubber_clog.dm b/code/modules/events/scrubber_clog.dm index 2bd4235c5e6..2a253cacc0d 100644 --- a/code/modules/events/scrubber_clog.dm +++ b/code/modules/events/scrubber_clog.dm @@ -24,7 +24,7 @@ var/clogged = TRUE /datum/round_event/scrubber_clog/announce() - priority_announce("Minor biological obstruction detected in the ventilation network. Blockage is believed to be in the [get_area_name(scrubber)] area.", "Custodial Notification") + priority_announce("Minor biological obstruction detected in the ventilation network. Blockage is believed to be in the [get_area_name(scrubber)].", "Custodial Notification") /datum/round_event/scrubber_clog/setup() scrubber = get_scrubber()