From f748c4ccb807905ffeeab7796bd06a937e541813 Mon Sep 17 00:00:00 2001 From: Flipp Syder <76629141+vulppine@users.noreply.github.com> Date: Wed, 23 Mar 2022 01:24:56 -0700 Subject: [PATCH] Fixes scrubbers sharing the same set of gases to scrub (#7241) --- .../Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs index 21c00db8db..8cc970a7f2 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs @@ -23,7 +23,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components public string OutletName { get; set; } = "pipe"; [ViewVariables] - public readonly HashSet FilterGases = GasVentScrubberData.DefaultFilterGases; + public readonly HashSet FilterGases = new(GasVentScrubberData.DefaultFilterGases); [ViewVariables(VVAccess.ReadWrite)] public ScrubberPumpDirection PumpDirection { get; set; } = ScrubberPumpDirection.Scrubbing;