diff --git a/WebfrontCore/Views/Server/_Scoreboard.cshtml b/WebfrontCore/Views/Server/_Scoreboard.cshtml
index 3c088c0e7..0438e4a67 100644
--- a/WebfrontCore/Views/Server/_Scoreboard.cshtml
+++ b/WebfrontCore/Views/Server/_Scoreboard.cshtml
@@ -49,7 +49,7 @@
@(client.Deaths ?? 0) |
@Math.Round(client.Kdr ?? 0, 2) |
@Math.Round(client.ScorePerMinute ?? 0) |
- @(client.ZScore == null ? 0 : Math.Round(client.ZScore.Value, 2).ToString(CultureInfo.CurrentCulture)) |
+ @(client.ZScore is null or 0 ? "--" : Math.Round(client.ZScore.Value, 2).ToString(CultureInfo.CurrentCulture)) |
@client.Ping |
}