mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-15 09:03:23 +01:00
Fixed filters and mixers operating with no power (#29050)
This commit is contained in:
committed by
GitHub
parent
18ff8ebd52
commit
172887da50
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user