diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs index 74186ed36e33af..7d702904fbe83b 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components public sealed partial class GasVentPumpComponent : Component { [ViewVariables(VVAccess.ReadWrite)] - public bool Enabled { get; set; } = true; + public bool Enabled { get; set; } = false; [ViewVariables] public bool IsDirty { get; set; } = false; diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs index 064077a8db291f..33168d9db9ce86 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs @@ -10,7 +10,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components public sealed partial class GasVentScrubberComponent : Component { [ViewVariables(VVAccess.ReadWrite)] - public bool Enabled { get; set; } = true; + public bool Enabled { get; set; } = false; [ViewVariables] public bool IsDirty { get; set; } = false;