Skip to content

Commit

Permalink
Merge pull request #44 from Tykku/True-nope
Browse files Browse the repository at this point in the history
True True North Fix
  • Loading branch information
LTS-FFXIV authored Apr 1, 2024
2 parents 5029c3a + 46a8a29 commit 367f158
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions RotationSolver.Basic/Rotations/CustomRotation_Ability.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace RotationSolver.Basic.Rotations;
namespace RotationSolver.Basic.Rotations;

partial class CustomRotation
{
Expand Down Expand Up @@ -44,7 +44,10 @@ private bool Ability(IAction nextGCD, out IAction? act)

if (DataCenter.MergedStatus.HasFlag(AutoStatus.Positional))
{
if (TrueNorthPvE.CanUse(out act)) return true;
if (TrueNorthPvE.Cooldown.CurrentCharges > 0)
{
if (TrueNorthPvE.CanUse(out act, onLastAbility: true, skipClippingCheck: true, skipComboCheck: true, usedUp: true)) return true;
}
}

IBaseAction.TargetOverride = TargetType.Heal;
Expand Down

0 comments on commit 367f158

Please sign in to comment.