From 4758a929537b16b92d15d6ffc845fefa42eae029 Mon Sep 17 00:00:00 2001 From: LTS-FFXIV <127939494+LTS-FFXIV@users.noreply.github.com> Date: Sat, 4 Jan 2025 15:48:27 -0600 Subject: [PATCH] Change card check from TheArrowPvE to TheEwerPvE Modified the condition for using a card when the AstralDrawPvE cooldown will have one charge in 3 seconds and the player is in combat. Specifically, replaced the check for using TheArrowPvE card with a check for using TheEwerPvE card. The rest of the conditions and logic remain unchanged. --- BasicRotations/Healer/AST_Default.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasicRotations/Healer/AST_Default.cs b/BasicRotations/Healer/AST_Default.cs index 628624272..82cf009cc 100644 --- a/BasicRotations/Healer/AST_Default.cs +++ b/BasicRotations/Healer/AST_Default.cs @@ -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;