Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
Dancer Distance Beta Fix
Browse files Browse the repository at this point in the history
Dancer Distance Beta Fix
  • Loading branch information
Tykku committed Apr 11, 2024
1 parent 032e4ac commit 0ec5973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BasicRotations/Ranged/DNC_Beta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&
Expand Down

0 comments on commit 0ec5973

Please sign in to comment.