From 74b565ebaeb75cf86767cd12de5ac05de9d3186b Mon Sep 17 00:00:00 2001 From: RaidMax Date: Mon, 24 Jan 2022 10:45:46 -0600 Subject: [PATCH] increase zscore precision for scoreboard.. last commit I promise --- WebfrontCore/Views/Server/_Scoreboard.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebfrontCore/Views/Server/_Scoreboard.cshtml b/WebfrontCore/Views/Server/_Scoreboard.cshtml index 9ccbcf284..50c2f0f9f 100644 --- a/WebfrontCore/Views/Server/_Scoreboard.cshtml +++ b/WebfrontCore/Views/Server/_Scoreboard.cshtml @@ -48,7 +48,7 @@ @(client.Deaths ?? 0) @Math.Round(client.Kdr ?? 0, 2) @Math.Round(client.ScorePerMinute ?? 0) - @Math.Round(client.ZScore ?? 0) + @Math.Round(client.ZScore ?? 0, 2) @client.Ping }