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);