Fixed bug where combat level didn't update after leveling a combat skill

This commit is contained in:
Ceikry
2023-06-16 07:48:09 +00:00
committed by Ryan
parent aab37414c3
commit 2f234cc589
@@ -280,6 +280,7 @@ public final class Skills {
if (entity instanceof Player) { if (entity instanceof Player) {
player.updateAppearance(); player.updateAppearance();
LevelUp.levelup(player, slot, amount); LevelUp.levelup(player, slot, amount);
updateCombatLevel();
} }
} }
if (entity instanceof Player) { if (entity instanceof Player) {