From 519b2e998b9698b1a09fc2a0c3667699a05aa621 Mon Sep 17 00:00:00 2001 From: wrexbe <81056464+wrexbe@users.noreply.github.com> Date: Thu, 2 Jun 2022 12:27:16 -0700 Subject: [PATCH] Fix thruster shutdown (#8598) --- Content.Server/Shuttles/EntitySystems/ThrusterSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Shuttles/EntitySystems/ThrusterSystem.cs b/Content.Server/Shuttles/EntitySystems/ThrusterSystem.cs index 8979877f44..48de1666c9 100644 --- a/Content.Server/Shuttles/EntitySystems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/EntitySystems/ThrusterSystem.cs @@ -365,6 +365,7 @@ namespace Content.Server.Shuttles.EntitySystems public bool CanEnable(EntityUid uid, ThrusterComponent component) { if (!component.Enabled) return false; + if (component.LifeStage > ComponentLifeStage.Running) return false; var xform = Transform(uid);