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

Commit

Permalink
MCH Beta Heat Protection
Browse files Browse the repository at this point in the history
Added protection to force hypercharge within 30 second Wildfire CD window if at 100 heat
  • Loading branch information
Toshi committed Apr 7, 2024
1 parent 04848af commit 9c5d0e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BasicRotations/Ranged/MCH_Beta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected override bool AttackAbility(out IAction? act)
}
}

if (!WildfirePvE.Cooldown.WillHaveOneCharge(30))
if (!WildfirePvE.Cooldown.WillHaveOneCharge(30) || (Heat == 100))
{
return (CanUseHyperchargePvE(out act));
}
Expand Down

0 comments on commit 9c5d0e4

Please sign in to comment.