Skip to content

Commit

Permalink
Fix error in Challenge Level description.
Browse files Browse the repository at this point in the history
Copy-paste error, instead of experience, it returned waiver-amount.
Reported in discord.
  • Loading branch information
BuildTools committed Aug 18, 2019
1 parent 54f9118 commit 15f4c8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ protected List<String> generateLevelDescription(ChallengeLevel level, Player use
{
result.add(this.user
.getTranslation("challenges.gui.level-description.experience-reward",
"[value]", Integer.toString(level.getWaiverAmount())));
"[value]", Integer.toString(level.getRewardExperience())));
}

if (this.addon.isEconomyProvided() && level.getRewardMoney() > 0)
Expand Down

0 comments on commit 15f4c8a

Please sign in to comment.