Skip to content

Commit

Permalink
Update CustomComboCache.cs
Browse files Browse the repository at this point in the history
Increase max level from 90 to 100 per #272 (thanks @diwo)
  • Loading branch information
MKhayle committed Jul 6, 2024
1 parent d6c252b commit 39c5b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XIVComboExpanded/CustomComboCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ internal unsafe (ushort Current, ushort Max) GetMaxCharges(uint actionID)
return found;

var cur = FFXIVClientStructs.FFXIV.Client.Game.ActionManager.GetMaxCharges(actionID, 0);
var max = FFXIVClientStructs.FFXIV.Client.Game.ActionManager.GetMaxCharges(actionID, 90);
var max = FFXIVClientStructs.FFXIV.Client.Game.ActionManager.GetMaxCharges(actionID, 100);
return this.chargesCache[key] = (cur, max);
}

Expand Down

0 comments on commit 39c5b93

Please sign in to comment.