From 523d1277133ffd526af48fe3f5b5d531cd71bca3 Mon Sep 17 00:00:00 2001 From: carnie Date: Sat, 10 Jan 2015 03:04:11 +0000 Subject: [PATCH] Resolves #6915 - Readds emergency shuttle announcements for docking and escaping which got lost --- code/controllers/subsystem/shuttles/emergency.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/controllers/subsystem/shuttles/emergency.dm b/code/controllers/subsystem/shuttles/emergency.dm index b629b92d222..2db8fc516d0 100644 --- a/code/controllers/subsystem/shuttles/emergency.dm +++ b/code/controllers/subsystem/shuttles/emergency.dm @@ -94,6 +94,8 @@ return mode = SHUTTLE_DOCKED timer = world.time + send2irc("Server", "The Emergency Shuttle has docked with the station.") + priority_announce("The Emergency Shuttle has docked with the station. You have [timeLeft(600)] minutes to board the Emergency Shuttle.", null, 'sound/AI/shuttledock.ogg', "Priority") if(SHUTTLE_DOCKED) if(time_left <= 0) //move each escape pod to its corresponding transit dock @@ -103,6 +105,7 @@ enterTransit() mode = SHUTTLE_ESCAPE timer = world.time + priority_announce("The Emergency Shuttle has left the station. Estimate [timeLeft(600)] minutes until the shuttle docks at Central Command.", null, null, "Priority") if(SHUTTLE_ESCAPE) if(time_left <= 0) //move each escape pod to its corresponding escape dock