Skip to content

Commit

Permalink
Merge pull request #526 from FFXIV-CombatReborn/ASTTypo
Browse files Browse the repository at this point in the history
Change card check from TheArrowPvE to TheEwerPvE
  • Loading branch information
LTS-FFXIV authored Jan 4, 2025
2 parents 64f53ea + 4758a92 commit 1ec3005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BasicRotations/Healer/AST_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ protected override bool GeneralAbility(IAction nextGCD, out IAction? act)
if (AstralDrawPvE.Cooldown.WillHaveOneCharge(3) && LadyOfCrownsPvE.CanUse(out act)) return true;

// Use cards if you are about to use Umbral or Astral Draw (to prevent overwriting)
if (AstralDrawPvE.Cooldown.WillHaveOneCharge(3) && InCombat && TheArrowPvE.CanUse(out act)) return true;
if (AstralDrawPvE.Cooldown.WillHaveOneCharge(3) && InCombat && TheEwerPvE.CanUse(out act)) return true;
if (AstralDrawPvE.Cooldown.WillHaveOneCharge(3) && InCombat && TheBolePvE.CanUse(out act)) return true;
if (UmbralDrawPvE.Cooldown.WillHaveOneCharge(3) && InCombat && TheArrowPvE.CanUse(out act)) return true;
if (UmbralDrawPvE.Cooldown.WillHaveOneCharge(3) && InCombat && TheSpirePvE.CanUse(out act)) return true;
Expand Down

0 comments on commit 1ec3005

Please sign in to comment.