Skip to content

Commit 607482b

Browse files
authored
Merge pull request #836 from FFXIV-CombatReborn/occultquickFix
Moved Occult Quick to the correct action type category to fix use
2 parents e08b478 + 3e66dd5 commit 607482b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

BasicRotations/Duty/PhantomDefault.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -243,11 +243,6 @@ public override bool AttackAbility(IAction nextGCD, out IAction? act)
243243
return true;
244244
}
245245

246-
if (InCombat && OccultQuickPvE.CanUse(out act))
247-
{
248-
return true;
249-
}
250-
251246
if (StealPvE.CanUse(out act))
252247
{
253248
return true;
@@ -589,6 +584,11 @@ public override bool GeneralGCD(out IAction? act)
589584
}
590585
}
591586

587+
if (InCombat && OccultQuickPvE.CanUse(out act))
588+
{
589+
return true;
590+
}
591+
592592
if (ShouldHoldBurst())
593593
{
594594
return false;

0 commit comments

Comments
 (0)