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 #179 from MaD-219/main
Browse files Browse the repository at this point in the history
Checking for Executioner when Enshrouding to not overwrite it.
  • Loading branch information
LTS-FFXIV authored Aug 4, 2024
2 parents c5e10f3 + 20e5efc commit a36274e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BasicRotations/Melee/RPR_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected override bool AttackAbility(IAction nextGCD, out IAction? act)
&& !CombatElapsedLess(3.5f) && ArcaneCirclePvE.CanUse(out act, skipAoeCheck: true)) return true;
}

if (IsTargetBoss && IsTargetDying || NoEnshroudPooling || YesEnshroudPooling || IsIdealHost)
if ((!Player.HasStatus(true, StatusID.Executioner)) && (IsTargetBoss && IsTargetDying || NoEnshroudPooling || YesEnshroudPooling || IsIdealHost))
{
if (EnshroudPvE.CanUse(out act)) return true;
}
Expand Down

0 comments on commit a36274e

Please sign in to comment.