Update positions for S9 aetheryte interactions

pull/34/head
Liza 2024-08-26 11:14:26 +02:00
parent 2a4ce09cda
commit 477b7cb446
Signed by: liza
GPG Key ID: 7199F8D727D55F67
1 changed files with 4 additions and 4 deletions

View File

@ -142,10 +142,10 @@ internal static class AethernetShortcut
logger.LogInformation("Moving to S9 aetheryte"); logger.LogInformation("Moving to S9 aetheryte");
List<Vector3> nearbyPoints = List<Vector3> nearbyPoints =
[ [
new(7.225532f, 8.467899f, -7.1670876f), new(0, 8.442986f, 9),
new(7.177844f, 8.467899f, 7.2216787f), new(9, 8.442986f, 0),
new(-7.0762224f, 8.467898f, 7.1924725f), new(-9, 8.442986f, 0),
new(-7.1289554f, 8.467898f, -7.0594683f) new(0, 8.442986f, -9),
]; ];
Vector3 closestPoint = nearbyPoints.MinBy(x => (playerPosition - x).Length()); Vector3 closestPoint = nearbyPoints.MinBy(x => (playerPosition - x).Length());