This commit is contained in:
vulppine
2022-08-19 04:47:31 -07:00
parent b9b9b84bea
commit 6dcbfcaaae

View File

@@ -30,7 +30,7 @@ namespace Content.Shared.Atmos.Piping.Unary.Components
public static GasVentScrubberData FilterModePreset = new GasVentScrubberData public static GasVentScrubberData FilterModePreset = new GasVentScrubberData
{ {
Enabled = true, Enabled = true,
FilterGases = GasVentScrubberData.DefaultFilterGases, FilterGases = new(GasVentScrubberData.DefaultFilterGases),
PumpDirection = ScrubberPumpDirection.Scrubbing, PumpDirection = ScrubberPumpDirection.Scrubbing,
VolumeRate = 200f, VolumeRate = 200f,
WideNet = false WideNet = false
@@ -40,7 +40,7 @@ namespace Content.Shared.Atmos.Piping.Unary.Components
{ {
Enabled = false, Enabled = false,
Dirty = true, Dirty = true,
FilterGases = GasVentScrubberData.DefaultFilterGases, FilterGases = new(GasVentScrubberData.DefaultFilterGases),
PumpDirection = ScrubberPumpDirection.Scrubbing, PumpDirection = ScrubberPumpDirection.Scrubbing,
VolumeRate = 200f, VolumeRate = 200f,
WideNet = false WideNet = false
@@ -50,7 +50,7 @@ namespace Content.Shared.Atmos.Piping.Unary.Components
{ {
Enabled = true, Enabled = true,
Dirty = true, Dirty = true,
FilterGases = GasVentScrubberData.DefaultFilterGases, FilterGases = new(GasVentScrubberData.DefaultFilterGases),
PumpDirection = ScrubberPumpDirection.Siphoning, PumpDirection = ScrubberPumpDirection.Siphoning,
VolumeRate = 200f, VolumeRate = 200f,
WideNet = false WideNet = false
@@ -61,7 +61,7 @@ namespace Content.Shared.Atmos.Piping.Unary.Components
Enabled = true, Enabled = true,
IgnoreAlarms = true, IgnoreAlarms = true,
Dirty = true, Dirty = true,
FilterGases = GasVentScrubberData.DefaultFilterGases, FilterGases = new(GasVentScrubberData.DefaultFilterGases),
PumpDirection = ScrubberPumpDirection.Siphoning, PumpDirection = ScrubberPumpDirection.Siphoning,
VolumeRate = 200f, VolumeRate = 200f,
WideNet = false WideNet = false