Fixes scrubbers sharing the same set of gases to scrub (#7241)

This commit is contained in:
Flipp Syder
2022-03-23 01:24:56 -07:00
committed by GitHub
parent f1d6776e46
commit f748c4ccb8

View File

@@ -23,7 +23,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components
public string OutletName { get; set; } = "pipe";
[ViewVariables]
public readonly HashSet<Gas> FilterGases = GasVentScrubberData.DefaultFilterGases;
public readonly HashSet<Gas> FilterGases = new(GasVentScrubberData.DefaultFilterGases);
[ViewVariables(VVAccess.ReadWrite)]
public ScrubberPumpDirection PumpDirection { get; set; } = ScrubberPumpDirection.Scrubbing;