update xd score scoring system
This commit is contained in:
@@ -1332,11 +1332,11 @@
|
||||
|
||||
const getXdTier = (score) => {
|
||||
score = +score;
|
||||
if (score <= 0) return 0;
|
||||
if (score < 5) return 1;
|
||||
if (score < 15) return 2;
|
||||
if (score < 30) return 3;
|
||||
if (score < 60) return 4;
|
||||
if (score < 5) return 0;
|
||||
if (score < 200) return 1;
|
||||
if (score < 1000) return 2;
|
||||
if (score < 100000) return 3;
|
||||
if (score < 200000000) return 4;
|
||||
return 5;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user