diff options
Diffstat (limited to 'build/database.js')
-rw-r--r-- | build/database.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/database.js b/build/database.js index f3eda16..45b0179 100644 --- a/build/database.js +++ b/build/database.js @@ -111,7 +111,7 @@ function getMemberLeaderboardAttributes(member) { function getProfileLeaderboardAttributes(profile) { // if you want to add a new leaderboard for member attributes, add it here (and getAllLeaderboardAttributes) return { - minion_count: profile.minion_count + unique_minions: profile.minion_count }; } async function fetchAllLeaderboardsCategorized() { @@ -171,7 +171,7 @@ exports.fetchAllMemberLeaderboardAttributes = fetchAllMemberLeaderboardAttribute /** Fetch the names of all the leaderboards that rank profiles */ async function fetchAllProfileLeaderboardAttributes() { return [ - 'minion_count' + 'unique_minions' ]; } function isLeaderboardReversed(name) { |