Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
Make next pet level rounding less confusing
Browse files Browse the repository at this point in the history
Doesn't match ingame behavior but it's kinda bad anyway
  • Loading branch information
LeaPhant committed Feb 29, 2020
1 parent 147e9ea commit 7d6be14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,7 @@ module.exports = {
levelBar += '-';
}

levelBar += ` §e${pet.level.xpCurrent.toLocaleString()}§6/§e${helper.formatNumber(pet.level.xpForNext, true, 1)}`;
levelBar += ` §e${pet.level.xpCurrent.toLocaleString()}§6/§e${helper.formatNumber(pet.level.xpForNext, false, 10)}`;

lore.push(levelBar);
}
Expand Down

0 comments on commit 7d6be14

Please sign in to comment.