From c71b4f83abb2697781f8e6eafa8ad35f924fbdf7 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Tue, 1 Mar 2022 21:25:13 +0800 Subject: many changes (will list in a bit) --- features/hud/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'features/hud') 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 => { -- cgit