]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix air vent and scrubber not requiring power (#29544)
authorslarticodefast <161409025+slarticodefast@users.noreply.github.com>
Sat, 29 Jun 2024 04:41:49 +0000 (06:41 +0200)
committerGitHub <noreply@github.com>
Sat, 29 Jun 2024 04:41:49 +0000 (21:41 -0700)
Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs
Content.Server/Atmos/Piping/Unary/Components/GasVentScrubberComponent.cs

index 74186ed36e33af08eda57b3bcb77719b3c382869..7d702904fbe83b4fbcd704dd6693ab26e4a8d2d8 100644 (file)
@@ -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;
index 064077a8db291fdd74f4885898ff4ae00d626d2e..33168d9db9ce86c7947f8fbb7abd413da97a4f56 100644 (file)
@@ -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;