From 23be46e327d6b57dbe24706d3ac5cc8a39ca941d Mon Sep 17 00:00:00 2001 From: FlufflesTheDog Date: Sat, 28 Sep 2024 11:08:51 -0700 Subject: [PATCH] Fix arrival announcements (#86928) ## About The Pull Request Fixes the automated announcement system not automatically announcing arrivals ## Why It's Good For The Game bu g ## Changelog :cl: fix: The automated announcement system once more announces new arrivals to the station. /:cl: --- code/game/machinery/announcement_system.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/announcement_system.dm b/code/game/machinery/announcement_system.dm index 07c12c28760..029f4a17ea9 100644 --- a/code/game/machinery/announcement_system.dm +++ b/code/game/machinery/announcement_system.dm @@ -97,12 +97,12 @@ GLOBAL_LIST_EMPTY(announcement_systems) switch(message_type) if(AUTO_ANNOUNCE_ARRIVAL) if(!arrival_toggle) - message = CompileText(arrival, target, rank) return + message = CompileText(arrival, target, rank) if(AUTO_ANNOUNCE_NEWHEAD) if(!newhead_toggle) - message = CompileText(newhead, target, rank) return + message = CompileText(newhead, target, rank) if(AUTO_ANNOUNCE_ARRIVALS_BROKEN) message = "The arrivals shuttle has been damaged. Docking for repairs..." if(AUTO_ANNOUNCE_NODE)