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

Commit

Permalink
gauss fix for beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Tykku committed Apr 14, 2024
1 parent 7c68946 commit 16a86b8
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 @@ -60,7 +60,7 @@ protected override bool EmergencyAbility(IAction nextGCD, out IAction? act)
return RicochetPvE.CanUse(out act, skipAoeCheck: true, usedUp: true);
}
// Use Gause
if (isGaussMore && !IsLastAction(true, GaussRoundPvE) && !IsLastAction(true, RicochetPvE) && Player.HasStatus(true, StatusID.Overheated))
if (isGaussMore && ((!IsLastAction(true, GaussRoundPvE) && !IsLastAction(true, RicochetPvE) && Player.HasStatus(true, StatusID.Overheated)) || !Player.HasStatus(true, StatusID.Overheated)))
{
return GaussRoundPvE.CanUse(out act, usedUp: true);
}
Expand Down

0 comments on commit 16a86b8

Please sign in to comment.