increase zscore precision for scoreboard.. last commit I promise

This commit is contained in:
RaidMax 2022-01-24 10:45:46 -06:00
parent 2b467d6ef9
commit 74b565ebae

View File

@ -48,7 +48,7 @@
<td>@(client.Deaths ?? 0)</td>
<td>@Math.Round(client.Kdr ?? 0, 2)</td>
<td>@Math.Round(client.ScorePerMinute ?? 0)</td>
<td>@Math.Round(client.ZScore ?? 0)</td>
<td>@Math.Round(client.ZScore ?? 0, 2)</td>
<td class="text-right">@client.Ping</td>
</tr>
}