From 80e8c8af4a0729aaa89961d2272b549760c369e8 Mon Sep 17 00:00:00 2001 From: Putnam Date: Tue, 8 Jun 2021 02:40:32 -0700 Subject: [PATCH] WHOOPS I SWAPPED FILTERS --- .../machinery/components/trinary_devices/filter.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm b/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm index cc1ba7df31..8dc764222b 100644 --- a/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm +++ b/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm @@ -105,10 +105,10 @@ else filtering = FALSE - if(filtering && air3.return_pressure() <= 9000) - air1.scrub_into(air3, transfer_ratio, list(filter_type)) - if(air2.return_pressure() <= 9000) - air1.transfer_ratio_to(air2, transfer_ratio) + if(filtering && air2.return_pressure() <= 9000) + air1.scrub_into(air2, transfer_ratio, list(filter_type)) + if(air3.return_pressure() <= 9000) + air1.transfer_ratio_to(air3, transfer_ratio) update_parents()