From 0ec597303db291772e388439b1de6fec9398bec3 Mon Sep 17 00:00:00 2001 From: Tykku Date: Thu, 11 Apr 2024 13:12:33 -0400 Subject: [PATCH] Dancer Distance Beta Fix Dancer Distance Beta Fix --- BasicRotations/Ranged/DNC_Beta.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasicRotations/Ranged/DNC_Beta.cs b/BasicRotations/Ranged/DNC_Beta.cs index 7b2abdc..364a92d 100644 --- a/BasicRotations/Ranged/DNC_Beta.cs +++ b/BasicRotations/Ranged/DNC_Beta.cs @@ -178,7 +178,7 @@ private bool UseClosedPosition(out IAction act) } private bool FinishTheDance(out IAction? act) { - bool areDanceTargetsInRange = AllHostileTargets.Any(hostile => hostile.DistanceToPlayer() < 15); + bool areDanceTargetsInRange = AllHostileTargets.Any(hostile => hostile.DistanceToPlayer() < 14); // Check for Standard Step if targets are in range or status is about to end. if (Player.HasStatus(true, StatusID.StandardStep) && CompletedSteps == 2 &&