diff options
| author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-03-04 07:51:39 +0800 |
|---|---|---|
| committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-03-04 07:51:39 +0800 |
| commit | 4784af7103fb0bd45aad28a662ed44297ac7e0b8 (patch) | |
| tree | 006e5ca1023dba398bbb2602e8c1b00fe963ddb6 /features/hud | |
| parent | 6b4f91e27d037b10e6c242352211e2774c34573e (diff) | |
| download | SoopyV2-4784af7103fb0bd45aad28a662ed44297ac7e0b8.tar.gz SoopyV2-4784af7103fb0bd45aad28a662ed44297ac7e0b8.tar.bz2 SoopyV2-4784af7103fb0bd45aad28a662ed44297ac7e0b8.zip | |
Fix command registering breaking
Fix dungeon map and solvers breaking with new map offset
Dungeon map Use items instead of text to show puzzles
Allow for cata over 50 in hud stat
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 8bdab52..d830104 100644 --- a/features/hud/index.js +++ b/features/hud/index.js @@ -563,7 +563,7 @@ class Hud extends Feature { string = "&6Deaths&7> &f" + this.numberUtils.numberWithCommas(this.lastStatData.death_count) } if(type === "cata"){ - let cataData = getLevelByXp(this.lastStatData.dungeons.dungeon_types.catacombs.experience, 2, 50) + let cataData = getLevelByXp(this.lastStatData.dungeons.dungeon_types.catacombs.experience, 2, Infinity) 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)) + ")" } |
