From dfd4016d4ea907719d0b4edf28e4b9529534870c Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 28 Feb 2021 16:10:02 -0600 Subject: make /leaderboards include categories --- build/cleaners/skyblock/stats.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'build/cleaners') diff --git a/build/cleaners/skyblock/stats.js b/build/cleaners/skyblock/stats.js index 80686c1..09941a4 100644 --- a/build/cleaners/skyblock/stats.js +++ b/build/cleaners/skyblock/stats.js @@ -1,11 +1,12 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.cleanProfileStats = void 0; +exports.cleanProfileStats = exports.categorizeStat = void 0; const statCategories = { 'deaths': ['deaths_', 'deaths'], 'kills': ['kills_', 'kills'], 'fishing': ['items_fished_', 'items_fished'], 'auctions': ['auctions_'], + 'collection': ['collection_'], 'races': ['_best_time'], 'misc': null // everything else goes here }; @@ -52,6 +53,7 @@ function categorizeStat(statNameRaw) { name: statNameRaw }; } +exports.categorizeStat = categorizeStat; function cleanProfileStats(data) { var _a; // TODO: add type for statsRaw (probably in hypixelApi.ts since its coming from there) -- cgit