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 #131 from tomastzorta/22HoursSpeedRun
Browse files Browse the repository at this point in the history
Fixed Reign Combo
  • Loading branch information
LTS-FFXIV authored Jul 23, 2024
2 parents b4289be + 1220daa commit 336b620
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BasicRotations/Tank/GNB_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ protected override bool GeneralGCD(out IAction? act)
{
bool areDDTargetsInRange = AllHostileTargets.Any(hostile => hostile.DistanceToPlayer() < 4.5f);

if (LionHeartPvE.CanUse(out act)) return true;
if (NobleBloodPvE.CanUse(out act)) return true;
if (IsLastGCD(false, NobleBloodPvE) && LionHeartPvE.CanUse(out act, skipComboCheck: true)) return true;
if (IsLastGCD(false, ReignOfBeastsPvE) && NobleBloodPvE.CanUse(out act, skipComboCheck: true)) return true;
if (ReignOfBeastsPvE.CanUse(out act)) return true;

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

0 comments on commit 336b620

Please sign in to comment.