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 null
parent 96c8125500
commit 00047bb1b1
No known key found for this signature in database
GPG Key ID: 212F05528FD678BE
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;