Non negative ability number.

This commit is contained in:
MobiusDev
2018-04-17 17:36:58 +00:00
parent 131190d3a5
commit d79a3f99c5

View File

@@ -13499,7 +13499,7 @@ public final class L2PcInstance extends L2Playable
public int getAbilityPoints() public int getAbilityPoints()
{ {
// Grand Crusade: 1 point per level after 84 // Grand Crusade: 1 point per level after 84
return getLevel() - 84; return Math.max(0, getLevel() - 84);
} }
/** /**