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

Commit

Permalink
fix: changed the order of General Ability and Attack Ability.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Apr 1, 2023
1 parent 4284cbf commit 9d2f912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Rotations/CustomRotation_Ability.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ private bool Ability(byte abilitiesRemaining, IAction nextGCD, out IAction act,

if (GeneralUsingAbility(role, out act)) return true;

if (GeneralAbility(abilitiesRemaining, out act)) return true;
if (HasHostilesInRange && AttackAbility(abilitiesRemaining, out act)) return true;
if (GeneralAbility(abilitiesRemaining, out act)) return true;

//Run!
if (!InCombat && IsMoving && role == JobRole.RangedPhysical
Expand Down

0 comments on commit 9d2f912

Please sign in to comment.