Fix air vent and scrubber not requiring power (#29544)
This commit is contained in:
parent
96c8125500
commit
00047bb1b1
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue