Skip to content

Commit

Permalink
Fix air vent and scrubber not requiring power (space-wizards#29544)
Browse files Browse the repository at this point in the history
  • Loading branch information
slarticodefast authored Jun 29, 2024
1 parent 9ee6689 commit ebd6104
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ebd6104

Please sign in to comment.