From 6dcbfcaaaeee0ded3b8ec89c612505a7d262cf15 Mon Sep 17 00:00:00 2001 From: vulppine Date: Fri, 19 Aug 2022 04:47:31 -0700 Subject: [PATCH] whoops --- .../Unary/Components/SharedVentScrubberComponent.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs b/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs index d574e4cfd1..c84d1f1ee0 100644 --- a/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs +++ b/Content.Shared/Atmos/Piping/Unary/Components/SharedVentScrubberComponent.cs @@ -30,7 +30,7 @@ namespace Content.Shared.Atmos.Piping.Unary.Components public static GasVentScrubberData FilterModePreset = new GasVentScrubberData { Enabled = true, - FilterGases = GasVentScrubberData.DefaultFilterGases, + FilterGases = new(GasVentScrubberData.DefaultFilterGases), PumpDirection = ScrubberPumpDirection.Scrubbing, VolumeRate = 200f, WideNet = false @@ -40,7 +40,7 @@ namespace Content.Shared.Atmos.Piping.Unary.Components { Enabled = false, Dirty = true, - FilterGases = GasVentScrubberData.DefaultFilterGases, + FilterGases = new(GasVentScrubberData.DefaultFilterGases), PumpDirection = ScrubberPumpDirection.Scrubbing, VolumeRate = 200f, WideNet = false @@ -50,7 +50,7 @@ namespace Content.Shared.Atmos.Piping.Unary.Components { Enabled = true, Dirty = true, - FilterGases = GasVentScrubberData.DefaultFilterGases, + FilterGases = new(GasVentScrubberData.DefaultFilterGases), PumpDirection = ScrubberPumpDirection.Siphoning, VolumeRate = 200f, WideNet = false @@ -61,7 +61,7 @@ namespace Content.Shared.Atmos.Piping.Unary.Components Enabled = true, IgnoreAlarms = true, Dirty = true, - FilterGases = GasVentScrubberData.DefaultFilterGases, + FilterGases = new(GasVentScrubberData.DefaultFilterGases), PumpDirection = ScrubberPumpDirection.Siphoning, VolumeRate = 200f, WideNet = false