diff --git a/src/app/_components/leaderboard.tsx b/src/app/_components/leaderboard.tsx index 7c1d728..aa5f3db 100644 --- a/src/app/_components/leaderboard.tsx +++ b/src/app/_components/leaderboard.tsx @@ -69,13 +69,16 @@ const EDITION_THRESHOLD = { } const ENHANCEMENT_THRESHOLD = { - STEEL: 320, - GOLD: 420, - LUCKY: 560, - GLASS: 880, + STEEL: 250, + GOLD: 320, + LUCKY: 360, + GLASS: 620, } -const getMedal = (rank: number, mmr: number) => { +const getMedal = (rank: number, mmr: number, isVanilla?: boolean) => { + if (isVanilla) { + return null + } let enhancement = RANK_IMAGES.stone let tooltip = 'Stone' if (mmr >= ENHANCEMENT_THRESHOLD.STEEL) { @@ -284,6 +287,7 @@ export function LeaderboardPage() {