diff options
Diffstat (limited to 'features/hud')
-rw-r--r-- | features/hud/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/hud/index.js b/features/hud/index.js index 9f83449..8bdab52 100644 --- a/features/hud/index.js +++ b/features/hud/index.js @@ -564,7 +564,7 @@ class Hud extends Feature { } if(type === "cata"){ let cataData = getLevelByXp(this.lastStatData.dungeons.dungeon_types.catacombs.experience, 2, 50) - string = "&6Cata&7> &f" + (cataData.level+cataData.progress).toFixed(2) + " &7(" + this.numberUtils.numberWithCommas(cataData.xpCurrent) + (cataData.level===50?"":"/" + this.numberUtils.numberWithCommas(cataData.xpForNext)) + ")" + string = "&6Cata&7> &f" + (~~((cataData.level+cataData.progress)*100)/100).toFixed(2) + " &7(" + this.numberUtils.numberWithCommas(cataData.xpCurrent) + (cataData.level===50?"":"/" + this.numberUtils.numberWithCommas(cataData.xpForNext)) + ")" } Object.keys(this.skillLevelCaps).forEach(skill => { |