add steam profile button and fix score acc
All checks were successful
Deploy Backend / deploy (push) Successful in 3m18s
Deploy Website / deploy (push) Successful in 5m43s

This commit is contained in:
Lee
2024-10-18 10:27:38 +01:00
parent 6c8ef89bb5
commit 3a734075e0
7 changed files with 36 additions and 4 deletions

View File

@ -95,6 +95,11 @@ export class PlayerService {
let daysAgo = 1; // Start from yesterday
for (let i = playerRankHistory.length - daysAgo - 1; i >= 0; i--) {
const rank = playerRankHistory[i];
// Skip inactive days
if (rank == 999_999) {
continue;
}
const date = getMidnightAlignedDate(getDaysAgoDate(daysAgo));
player.setStatisticHistory(date, {
rank: rank,