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

Commit

Permalink
Merge pull request #38 from FFXIV-CombatReborn/DT-WHM-100-Support
Browse files Browse the repository at this point in the history
Update WHM for 100
  • Loading branch information
Tykku authored Jul 5, 2024
2 parents 8439493 + 97ef84a commit c020473
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion BasicRotations/Healer/WHM_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ protected override bool DefenseSingleAbility(IAction nextGCD, out IAction? act)
[RotationDesc(ActionID.AsylumPvE)]
protected override bool HealAreaAbility(IAction nextGCD, out IAction? act)
{
if (DivineCaressPvE.CanUse(out act)) return true;
if (AsylumPvE.CanUse(out act)) return true;
return base.HealAreaAbility(nextGCD, out act);
}
Expand All @@ -101,7 +102,7 @@ protected override bool HealSingleAbility(IAction nextGCD, out IAction? act)

if (DivineBenisonPvE.CanUse(out act)) return true;

if (TetragrammatonPvE.CanUse(out act)) return true;
if (TetragrammatonPvE.CanUse(out act, usedUp: true)) return true;
return base.HealSingleAbility(nextGCD, out act);
}

Expand Down Expand Up @@ -162,6 +163,8 @@ protected override bool GeneralGCD(out IAction? act)
if (UseLily(out act)) return true;
}

if (GlareIvPvE.CanUse(out act)) return true;

if (HolyPvE.CanUse(out act)) return true;

if (AeroPvE.CanUse(out act)) return true;
Expand Down

0 comments on commit c020473

Please sign in to comment.