From 4f4b96d5b1ac75e9639aff61b0cd6f20fbaa8233 Mon Sep 17 00:00:00 2001 From: mwerezak Date: Tue, 1 Jul 2014 22:40:15 -0400 Subject: [PATCH] Fixes bad emergency shuttle can_force() check --- code/modules/shuttles/shuttle_emergency.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/shuttles/shuttle_emergency.dm b/code/modules/shuttles/shuttle_emergency.dm index 82de6cfe99a..a16b98db1e4 100644 --- a/code/modules/shuttles/shuttle_emergency.dm +++ b/code/modules/shuttles/shuttle_emergency.dm @@ -45,7 +45,7 @@ //initiating or cancelling a launch ALWAYS requires authorization, but if we are already set to launch anyways than forcing does not. //this is so that people can force launch if the docking controller cannot safely undock without needing X heads to swipe. - if (process_state == WAIT_LAUNCH && !C.has_authorization()) + if (process_state != WAIT_LAUNCH && !C.has_authorization()) return 0 return ..()