From c98e1474d026ea864b813149703ce1b79431c38a Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sat, 26 Jan 2019 12:05:07 -0700 Subject: [PATCH] Add totalPoints, totalCount --- core/user_achievements_earned.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/user_achievements_earned.js b/core/user_achievements_earned.js index ef793023..4292cb91 100644 --- a/core/user_achievements_earned.js +++ b/core/user_achievements_earned.js @@ -87,6 +87,8 @@ exports.getModule = class UserAchievementsEarned extends MenuModule { realName : this.client.user.getProperty(UserProps.RealName), location : this.client.user.getProperty(UserProps.Location), affils : this.client.user.getProperty(UserProps.Affiliations), + totalCount : this.client.user.getProperty(UserProps.AchievementTotalCount), + totalPoints : this.client.user.getProperty(UserProps.AchievementTotalPoints), }; }