Fixed filters and mixers operating with no power (#29050)

This commit is contained in:
Migratingcocofruit
2025-04-26 21:19:43 +03:00
committed by GitHub
parent 18ff8ebd52
commit 172887da50
2 changed files with 3 additions and 3 deletions
@@ -94,7 +94,7 @@
update_icon()
/obj/machinery/atmospherics/trinary/filter/process_atmos()
if(!on)
if((stat & (NOPOWER|BROKEN)) || !on)
return FALSE
var/output_starting_pressure = air3.return_pressure()
@@ -79,8 +79,8 @@
air3.volume = 300
/obj/machinery/atmospherics/trinary/mixer/process_atmos()
if(!on)
return 0
if((stat & (NOPOWER|BROKEN)) || !on)
return FALSE
var/output_starting_pressure = air3.return_pressure()