From 355742a14490dd5559f5fd2711141360650940f3 Mon Sep 17 00:00:00 2001 From: PowerfulBacon <26465327+PowerfulBacon@users.noreply.github.com> Date: Sun, 8 Sep 2024 12:39:42 +0100 Subject: [PATCH] Fixes atmos processing race condition (#11447) * Update atmosmachinery.dm * Fixes preceding definition * Update mixer.dm * Removes unnecessary code --- .../atmospherics/machinery/components/trinary_devices/mixer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm b/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm index bbbb2b721d5b8..cbd612de38a2b 100644 --- a/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm +++ b/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm @@ -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