From 1e733f87be05ecf36c37cc9435a50a5a581c0246 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 15 Jan 2022 14:32:25 +0800 Subject: make master floor completiosn say M[number] not F[number] --- 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 a4e594e..a72f850 100644 --- a/features/hud/index.js +++ b/features/hud/index.js @@ -479,7 +479,7 @@ class Hud extends Feature { } if(type.startsWith("completions_master_")){ let floor = parseInt(type.split("_").pop()) - string = "&6F" + floor +" Comps&7> &f" + this.numberUtils.numberWithCommas((this.lastStatData.dungeons?.dungeon_types?.master_catacombs?.tier_completions?.[floor]||0)) + string = "&6M" + floor +" Comps&7> &f" + this.numberUtils.numberWithCommas((this.lastStatData.dungeons?.dungeon_types?.master_catacombs?.tier_completions?.[floor]||0)) } if(type.startsWith("completions_dungeon_")){ let floor = parseInt(type.split("_").pop()) -- cgit