From 195ad346ff2b188aca30d2ac5e579642ea85e45a Mon Sep 17 00:00:00 2001 From: StrumpetPlaya Date: Fri, 20 Jul 2012 08:42:29 -0400 Subject: [PATCH] Another bugfix for atmos lockdowns. - Doors that are locked down by two different alarms should no longer have their access permanently require engineering access. --- code/game/machinery/alarm.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm index 57ca3292492..9db6a51a6d0 100644 --- a/code/game/machinery/alarm.dm +++ b/code/game/machinery/alarm.dm @@ -356,7 +356,7 @@ continue if(istype(E, /obj/machinery/door/airlock)) - if((!E:arePowerSystemsOn()) || (E.stat & NOPOWER)) continue + if((!E:arePowerSystemsOn()) || (E.stat & NOPOWER) || E:air_locked) continue if(!E.density) spawn(0) E.close()