fixes up air alarm modes

This commit is contained in:
vulppine
2022-08-19 04:40:50 -07:00
parent 14fad57e14
commit b9b9b84bea
4 changed files with 63 additions and 64 deletions

View File

@@ -55,6 +55,17 @@ namespace Content.Shared.Atmos.Piping.Unary.Components
VolumeRate = 200f,
WideNet = false
};
public static GasVentScrubberData ReplaceModePreset = new GasVentScrubberData
{
Enabled = true,
IgnoreAlarms = true,
Dirty = true,
FilterGases = GasVentScrubberData.DefaultFilterGases,
PumpDirection = ScrubberPumpDirection.Siphoning,
VolumeRate = 200f,
WideNet = false
};
}
[Serializable, NetSerializable]