track total scores and total ranked scores
This commit is contained in:
@ -114,6 +114,8 @@ export async function getScoreSaberPlayerFromToken(
|
||||
scores: {
|
||||
rankedScores: 0,
|
||||
unrankedScores: 0,
|
||||
totalScores: 0,
|
||||
totalRankedScores: 0,
|
||||
},
|
||||
},
|
||||
...history[todayDate],
|
||||
@ -152,6 +154,10 @@ export async function getScoreSaberPlayerFromToken(
|
||||
statisticHistory[dateKey] = {
|
||||
...statisticHistory[dateKey],
|
||||
rank: rank,
|
||||
scores: {
|
||||
totalScores: token.scoreStats.totalPlayCount,
|
||||
totalRankedScores: token.scoreStats.rankedPlayCount,
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -27,6 +27,16 @@ export interface PlayerHistory {
|
||||
* The amount of unranked scores set.
|
||||
*/
|
||||
unrankedScores?: number;
|
||||
|
||||
/**
|
||||
* The total amount of ranked scores
|
||||
*/
|
||||
totalRankedScores?: number;
|
||||
|
||||
/**
|
||||
* The total amount of scores
|
||||
*/
|
||||
totalScores?: number;
|
||||
};
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user