Added paintball stats

This commit is contained in:
2025-09-21 19:02:54 +02:00
parent da65ced9fa
commit ae3f0124b5
6 changed files with 88 additions and 7 deletions

View File

@@ -100,7 +100,14 @@ export function PlayerStats(
"speeduhc": <SpeedUHCStats stats={stats.SpeedUHC} uhcCoins={stats.UHC?.coins} />,
"smashheros": <SmashHerosStats stats={stats.SmashHeros} />,
"warlords": <WarlordsStats stats={stats.Warlords} />,
"classic": <ClassicStats arenaBrawlStats={stats.ArenaBrawl} />
"classic": (
<ClassicStats
stats={{
arena: stats.ArenaBrawl,
paintball: stats.Paintball
}}
/>
)
} as const
const defaultOrder = Object.keys(statsComponents)