From ecb469f87c3bd90f4ca49214a606435b17646bd2 Mon Sep 17 00:00:00 2001 From: bytedream Date: Tue, 6 Jan 2026 00:50:57 +0100 Subject: [PATCH] fix live stats --- src/app/website/index/LiveStats.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/website/index/LiveStats.svelte b/src/app/website/index/LiveStats.svelte index 6d98f1f..d56c8fe 100644 --- a/src/app/website/index/LiveStats.svelte +++ b/src/app/website/index/LiveStats.svelte @@ -11,7 +11,7 @@ function transformMobKills(mobKills: number) { if (mobKills < 1000) return `${mobKills}`; else if (mobKills < 1_000_000) return `${(mobKills / 1000).toFixed(2)}K`; - else return `${Math.floor(mobKills / 1000)}`; + else return `${(mobKills / 1000 / 1000).toFixed(2)}M`; }