Skip to content

Commit

Permalink
Fix copy-paste issue.
Browse files Browse the repository at this point in the history
Generating Level Lore does not use proper settings.
  • Loading branch information
BONNe committed Feb 18, 2019
1 parent 4db59d6 commit 19aab99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ protected List<String> generateLevelDescription(ChallengeLevel level, Player use
// Used to know if blocks, entities, items should be added after requirements and rewards.
char prevChar = ' ';

for (char c : this.addon.getChallengesSettings().getChallengeLoreMessage().toLowerCase().toCharArray())
for (char c : this.addon.getChallengesSettings().getLevelLoreMessage().toLowerCase().toCharArray())
{
switch (c)
{
Expand Down

0 comments on commit 19aab99

Please sign in to comment.