Skip to content

Commit

Permalink
Fixes atmos processing race condition (#11447)
Browse files Browse the repository at this point in the history
* Update atmosmachinery.dm

* Fixes preceding definition

* Update mixer.dm

* Removes unnecessary code
  • Loading branch information
PowerfulBacon authored Sep 8, 2024
1 parent ac199f4 commit 355742a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

/obj/machinery/atmospherics/components/trinary/mixer/process_atmos()
..()
if(!on || !(nodes[1] && nodes[2] && nodes[3] && parents[1] && parents[2] && parents[3]) && !is_operational)
if(!on || !(nodes[1] && nodes[2] && nodes[3]) || !is_operational)
return

//Get those gases, mah boiiii
Expand Down

0 comments on commit 355742a

Please sign in to comment.