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

Commit

Permalink
Doubleweave protection for Overheat AOE
Browse files Browse the repository at this point in the history
  • Loading branch information
Tykku committed May 17, 2024
1 parent 507aaf8 commit fdc25a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BasicRotations/Ranged/MCH_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ protected override bool EmergencyAbility(IAction nextGCD, out IAction? act)
}

// Use Ricochet
if (isRicochetMore && ((!IsLastAction(true, new[] { GaussRoundPvE, RicochetPvE }) && IsLastGCD(true, HeatBlastPvE)) || !IsLastGCD(true, HeatBlastPvE)))
if (isRicochetMore && ((!IsLastAction(true, new[] { GaussRoundPvE, RicochetPvE }) && IsLastGCD(true, new[] { HeatBlastPvE, AutoCrossbowPvE })) || !IsLastGCD(true, new[] { HeatBlastPvE, AutoCrossbowPvE })))
{
if (RicochetPvE.CanUse(out act, skipAoeCheck: true, usedUp: true))
return true;
}

// Use Gauss
if (isGaussMore && ((!IsLastAction(true, new[] { GaussRoundPvE, RicochetPvE }) && IsLastGCD(true, HeatBlastPvE)) || !IsLastGCD(true, HeatBlastPvE)))
if (isGaussMore && ((!IsLastAction(true, new[] { GaussRoundPvE, RicochetPvE }) && IsLastGCD(true, new[] { HeatBlastPvE, AutoCrossbowPvE })) || !IsLastGCD(true, new[] { HeatBlastPvE, AutoCrossbowPvE })))
{
if (GaussRoundPvE.CanUse(out act, usedUp: true))
return true;
Expand Down

0 comments on commit fdc25a5

Please sign in to comment.