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 #136 from tomastzorta/Superhemorrhoids
Browse files Browse the repository at this point in the history
Better XIVAnalysis
  • Loading branch information
LTS-FFXIV authored Jul 24, 2024
2 parents c78b317 + 8d41ebd commit 4722609
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BasicRotations/Tank/GNB_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ protected override bool GeneralGCD(out IAction? act)
if (Player.HasStatus(true, StatusID.NoMercy) && CanUseDoubleDown(out act)) return true;
if (Player.HasStatus(true, StatusID.NoMercy) && IsLastGCD(ActionID.DoubleDownPvE) && BlastingZonePvE.CanUse(out act)) return true;
}


if (NoMercyPvE.Cooldown.IsCoolingDown && BloodfestPvE.Cooldown.IsCoolingDown && BlastingZonePvE.CanUse(out act)) return true;

if (CanUseGnashingFang(out act)) return true;

Expand All @@ -126,7 +126,7 @@ protected override bool GeneralGCD(out IAction? act)
if (DemonSlaughterPvE.CanUse(out act)) return true;
if (DemonSlicePvE.CanUse(out act)) return true;

if (Ammo == 3 && IsLastGCD(ActionID.BrutalShellPvE) && BurstStrikePvE.CanUse(out act)) return true;
if (Ammo == 2 && IsLastGCD(ActionID.BrutalShellPvE) && BurstStrikePvE.CanUse(out act)) return true;

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

0 comments on commit 4722609

Please sign in to comment.