From 42e49f57c828339a004c8ab23effbd0ea09cb5ae Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Tue, 7 Jul 2026 15:01:14 -0500 Subject: [PATCH] Fix airlock pump inverted condition (#96839) ## About The Pull Request Fairly self explanatory one ## Changelog :cl: Melbert fix: Fix airlock pump only working when nonfunctional /:cl: --- .../machinery/components/unary_devices/airlock_pump.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/components/unary_devices/airlock_pump.dm b/code/modules/atmospherics/machinery/components/unary_devices/airlock_pump.dm index c391fe2e8c2..daac7d51381 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/airlock_pump.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/airlock_pump.dm @@ -182,7 +182,7 @@ /obj/machinery/atmospherics/components/unary/airlock_pump/process_atmos() if(!on) return - if(is_operational) + if(!is_operational) stack_trace("Airlock pump on but not operational, it should've been cancelled by on_set_is_operational") stop_cycle(null, unbolt_only = TRUE) return