From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sat, 29 Jun 2024 04:41:49 +0000 (+0200) Subject: Fix air vent and scrubber not requiring power (#29544) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=ebd6104c639e715246a01dce07282e77b6080b3b;p=space-station-14.git Fix air vent and scrubber not requiring power (#29544) --- 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;