From e58f5eda416ffcc7a21519e47a4552c99e8db53a Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Tue, 24 Jun 2014 21:18:19 -0400 Subject: [PATCH] Derpderp --- code/controllers/emergency_shuttle_controller.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/emergency_shuttle_controller.dm b/code/controllers/emergency_shuttle_controller.dm index 015584591dd..e68475560ae 100644 --- a/code/controllers/emergency_shuttle_controller.dm +++ b/code/controllers/emergency_shuttle_controller.dm @@ -198,7 +198,7 @@ var/global/datum/emergency_shuttle_controller/emergency_shuttle //returns 1 if the shuttle has gone to the station and come back at least once, //used for game completion checking purposes /datum/emergency_shuttle_controller/proc/returned() - (departed && shuttle.moving_status == SHUTTLE_IDLE && shuttle.location) //we've gone to the station at least once, no longer in transit and are idle back at centcom + return (departed && shuttle.moving_status == SHUTTLE_IDLE && shuttle.location) //we've gone to the station at least once, no longer in transit and are idle back at centcom //returns 1 if the shuttle is not idle at centcom /datum/emergency_shuttle_controller/proc/online()