From b1c86ae0b372df519ced6b6314e412176aecffb9 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Tue, 12 Mar 2024 05:57:35 -0700 Subject: [PATCH] Fix arrivals not docking on spinning stations (#26033) Fix arrivals not working on spinning stations Increases the tolerance to .15 instead of .1 (cherry picked from commit 9e2e51431938b2df9391939fe499f8963b297292) --- Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs index 7bc1be02e3..e46a7c715f 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs @@ -134,7 +134,7 @@ public sealed partial class DockingSystem foreach (var config in configs) { - if (config.Coordinates.Equals(coordinates) && config.Angle.EqualsApprox(angle, 0.01)) + if (config.Coordinates.Equals(coordinates) && config.Angle.EqualsApprox(angle, 0.15)) { return config; }