Fix air vent and scrubber not requiring power (#29544)

This commit is contained in:
slarticodefast
2024-06-29 06:41:49 +02:00
committed by GitHub
parent 9ee66892a0
commit ebd6104c63
2 changed files with 2 additions and 2 deletions

View 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;

View 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;