From b589a121d90795f7e915741a2485579018bc731d Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Sat, 21 Oct 2023 14:33:49 -0700 Subject: [PATCH] Fix thrusters starting disabled (#21147) --- Content.Server/Shuttles/Components/ThrusterComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Shuttles/Components/ThrusterComponent.cs b/Content.Server/Shuttles/Components/ThrusterComponent.cs index e7cfbf8f8e..d835099115 100644 --- a/Content.Server/Shuttles/Components/ThrusterComponent.cs +++ b/Content.Server/Shuttles/Components/ThrusterComponent.cs @@ -16,7 +16,7 @@ namespace Content.Server.Shuttles.Components /// Whether the thruster has been force to be enabled / disabled (e.g. VV, interaction, etc.) /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public bool Enabled { get; set; } + public bool Enabled { get; set; } = true; /// /// This determines whether the thruster is actually enabled for the purposes of thrust -- 2.51.2