From 931f592faec809dfb81d2fbc1ad83e1943f81314 Mon Sep 17 00:00:00 2001 From: mwerezak Date: Mon, 21 Jul 2014 20:27:26 -0400 Subject: [PATCH] Fixes specops shuttle messages Specops messages were reversed due to paradise using a different values for specops shuttle location. --- code/modules/shuttles/shuttle_specops.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/shuttles/shuttle_specops.dm b/code/modules/shuttles/shuttle_specops.dm index 9bad8d0cb4e..2027252d05f 100644 --- a/code/modules/shuttles/shuttle_specops.dm +++ b/code/modules/shuttles/shuttle_specops.dm @@ -52,7 +52,7 @@ C.visible_message("\blue The Special Operations shuttle will depart in [(specops_countdown_time/10)] seconds.") - if (location) //returning + if (!location) //returning radio_announce("THE SPECIAL OPERATIONS SHUTTLE IS PREPARING TO RETURN") else radio_announce("THE SPECIAL OPERATIONS SHUTTLE IS PREPARING FOR LAUNCH") @@ -65,7 +65,7 @@ /datum/shuttle/ferry/multidock/specops/move(var/area/origin,var/area/destination) ..(origin, destination) - if (!location) //just arrived home + if (location) //just arrived home for(var/turf/T in get_area_turfs(destination)) var/mob/M = locate(/mob) in T M << "\red You have arrived at Central Command. Operation has ended!"