Skip to content

Commit

Permalink
fix missing overheat checks for MCH#3109
Browse files Browse the repository at this point in the history
  • Loading branch information
PrincessRTFM committed Jul 21, 2024
1 parent 257c46f commit b14e0da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions XIVComboVX/Combos/MCH.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim

if (IsEnabled(CustomComboPreset.MachinistHyperchargeWildfire)) {

if (level >= MCH.Levels.Wildfire) {
if (level >= MCH.Levels.Wildfire && gauge.IsOverheated) {

if (IsOffCooldown(MCH.Wildfire) && HasTarget)
return MCH.Wildfire;
Expand Down Expand Up @@ -213,7 +213,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
}

if (IsEnabled(CustomComboPreset.MachinistHyperchargeWildfire) && level >= MCH.Levels.Wildfire) {
if (IsOffCooldown(MCH.Wildfire) && HasTarget)
if (gauge.IsOverheated && IsOffCooldown(MCH.Wildfire) && HasTarget)
return MCH.Wildfire;
}

Expand Down

0 comments on commit b14e0da

Please sign in to comment.