From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Tue, 5 Mar 2024 10:08:44 +0000 (+1100) Subject: Fix shuttle disabling on ftl (#25859) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=574c625d124ba086f03d327be28d961c680dbd73;p=space-station-14.git Fix shuttle disabling on ftl (#25859) Branch moment. --- diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index 7b0c1b7484..f9ceab8f7b 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -480,8 +480,10 @@ public sealed partial class ShuttleSystem { Disable(uid, component: body); } - - Enable(uid, component: body, shuttle: entity.Comp2); + else + { + Enable(uid, component: body, shuttle: entity.Comp2); + } } _thruster.DisableLinearThrusters(entity.Comp2);