Skip to content

Commit

Permalink
minor bugfix in MCH main combo (I think)
Browse files Browse the repository at this point in the history
  • Loading branch information
PrincessRTFM committed Jul 15, 2024
1 parent 643173f commit 6185f2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion XIVComboVX/Combos/MCH.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
if (level >= MCH.Levels.AirAnchor)
PickByCooldown(preference, actionID, MCH.Drill, MCH.AirAnchor);

return CanUse(MCH.Drill) ? MCH.Drill : actionID;
if (CanUse(MCH.Drill))
return MCH.Drill; // probably shouldn't return actionID so it can run through the chain below
}
}
}
Expand Down

0 comments on commit 6185f2e

Please sign in to comment.