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

Commit

Permalink
Fixed Gnashing Fang not executing 100% of the time
Browse files Browse the repository at this point in the history
Fixed Burst strike AOE Check

Fixed Ammo Overcap on all levels

No Mercy window GCDs are *Perfect*
  • Loading branch information
EYEZOexe committed Jul 25, 2024
1 parent 8d41ebd commit 589ff48
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 @@ -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 == 2 && IsLastGCD(ActionID.BrutalShellPvE) && BurstStrikePvE.CanUse(out act)) return true;
if (Ammo == MaxAmmo && 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 Expand Up @@ -211,7 +211,7 @@ private bool CanUseBurstStrike(out IAction act)
{
if (BurstStrikePvE.CanUse(out act))
{
if (DemonSlicePvE.CanUse(out act)) return false;
if (DemonSlicePvE.CanUse(out _)) return false;

if (SonicBreakPvE.Cooldown.IsCoolingDown && SonicBreakPvE.Cooldown.WillHaveOneCharge(0.5f) && GnashingFangPvE.EnoughLevel) return false;

Expand Down

0 comments on commit 589ff48

Please sign in to comment.