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

Commit

Permalink
Merge pull request #42 from FFXIV-CombatReborn/Woops-Sorry-Gauss-Round
Browse files Browse the repository at this point in the history
gauss fix for beta
  • Loading branch information
Toshi authored Apr 14, 2024
2 parents f93a3eb + 16a86b8 commit f07aeec
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 f07aeec

Please sign in to comment.