From 8e12b28f93428a934a5343b23822fdc905933e40 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sun, 16 Jun 2024 16:13:11 +0200 Subject: [PATCH] Aetheryte Shortcut: Extend range check --- Questionable/Controller/Steps/BaseFactory/AetheryteShortcut.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Questionable/Controller/Steps/BaseFactory/AetheryteShortcut.cs b/Questionable/Controller/Steps/BaseFactory/AetheryteShortcut.cs index 5a9b3b86..7a9655ef 100644 --- a/Questionable/Controller/Steps/BaseFactory/AetheryteShortcut.cs +++ b/Questionable/Controller/Steps/BaseFactory/AetheryteShortcut.cs @@ -75,7 +75,7 @@ internal static class AetheryteShortcut } Vector3 pos = clientState.LocalPlayer!.Position; - if (aetheryteData.CalculateDistance(pos, territoryType, TargetAetheryte) < 11 || + if (aetheryteData.CalculateDistance(pos, territoryType, TargetAetheryte) < 20 || (Step.AethernetShortcut != null && (aetheryteData.CalculateDistance(pos, territoryType, Step.AethernetShortcut.From) < 20 || aetheryteData.CalculateDistance(pos, territoryType, Step.AethernetShortcut.To) < 20)))