Fix airlock pump inverted condition (#96839)

## About The Pull Request

Fairly self explanatory one

## Changelog

🆑 Melbert
fix: Fix airlock pump only working when nonfunctional
/🆑
This commit is contained in:
MrMelbert
2026-07-07 22:01:14 +02:00
committed by GitHub
parent c376f70a39
commit 42e49f57c8
@@ -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