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)
This commit is contained in:
parent
3dda5a6cec
commit
b1c86ae0b3
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue