From 9c62e7e9c5eaf45cb4e7d55a6cae67bf82f24f55 Mon Sep 17 00:00:00 2001 From: Sanator <39862806+Sanator@users.noreply.github.com> Date: Tue, 13 Aug 2019 16:09:34 +0100 Subject: [PATCH] fixes pod storage fixes the emergency pod suit storage being open on non-red/delta alert and the shuttle was on the station --- code/modules/shuttle/on_move.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/shuttle/on_move.dm b/code/modules/shuttle/on_move.dm index 6f136473df3..5acb1b5e592 100644 --- a/code/modules/shuttle/on_move.dm +++ b/code/modules/shuttle/on_move.dm @@ -289,7 +289,7 @@ All ShuttleMove procs go here // If the pod was launched, the storage will always open. The CentCom check // ignores the movement of the shuttle from the staging area on CentCom to // the station as it is loaded in. - if (oldT && !is_centcom_level(oldT.z)) + if (oldT && !is_reserved_level(oldT.z)) unlocked = TRUE /************************************Mob move procs************************************/