From ebd6104c639e715246a01dce07282e77b6080b3b Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sat, 29 Jun 2024 06:41:49 +0200 Subject: [PATCH] Fix air vent and scrubber not requiring power (#29544) --- .../Atmos/Piping/Unary/Components/GasVentPumpComponent.cs | 2 +- .../Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs index 74186ed36e..7d702904fb 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 064077a8db..33168d9db9 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; -- 2.51.2