From c2ccf2bc0f2e53b2d6edf3f2b8131a2b1a051b84 Mon Sep 17 00:00:00 2001 From: PopGamer46 Date: Wed, 28 Aug 2024 15:22:21 +0200 Subject: [PATCH] Fixes shuttles not being able to FTL onto/near station (#31569) fixes FTL --- .../Shuttles/Systems/ShuttleSystem.FasterThanLight.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index e670445745..8da7aaa641 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -118,7 +118,7 @@ public sealed partial class ShuttleSystem continue; } - TryAddFTLDestination(gridXform.MapID, true, out _); + TryAddFTLDestination(gridXform.MapID, true, false, false, out _); } }