Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkborderman committed Aug 20, 2024
1 parent ed0802a commit f81298a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions data/scripts/plugins/LevelupPluginImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ public int getStoryPointsPerLevel() {
return (int) Global.getSettings().getFloat("storyPointsPerLevel");
}

public int getBonusXPUseMultAtMaxLevel() {
return (int) Global.getSettings().getFloat("bonusXPUseMultAtMaxLevel");
}

public long getXPForNextLevel(int level) {
if (level < XP_PER_LEVEL.length) {
return XP_PER_LEVEL[level];
Expand Down

0 comments on commit f81298a

Please sign in to comment.