xd score fix

This commit is contained in:
2026-05-24 09:51:10 +02:00
parent 18cac93bf1
commit 375e1a85d4
4 changed files with 80 additions and 38 deletions

View File

@@ -1346,7 +1346,7 @@
const getXdTier = (score) => {
score = +score;
if (score < 5) return 0;
if (score < 1) return 0;
if (score < 200) return 1;
if (score < 1000) return 2;
if (score < 100000) return 3;