1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

increase zscore precision for scoreboard.. last commit I promise

This commit is contained in:
RaidMax
2022-01-24 10:45:46 -06:00
parent 9aa972fac7
commit cb7e20306d

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>
}