Skip to content

Commit

Permalink
site: leaderboard: Fix assists and deaths being backwards
Browse files Browse the repository at this point in the history
The order is KDA, not KAD.

Fixes: 1259b63 ("site: leaderboard: Add kda, *pm, and acc")
Signed-off-by: Sean Anderson <[email protected]>
  • Loading branch information
Forty-Bot committed Feb 23, 2024
1 parent a9ae28b commit 13b6397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trends/site/templates/leaderboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ <h1>Leaderboard</h1>
<td>{{ "{:.2%}".format(player['winrate']) }}</td>
<td>{{ "{:.3}".format(player['rating']) }}</td>
<td>{{ optformat("{:.1f}", player.k30) }}</td>
<td>{{ optformat("{:.1f}", player.a30) }}</td>
<td>{{ optformat("{:.1f}", player.d30) }}</td>
<td>{{ optformat("{:.1f}", player.a30) }}</td>
<td>{{ optformat("{:.1f}", player.kad) }}</td>
<td>{{ optformat("{:.1f}", player.kd) }}</td>
<td>{{ optint(player.dpm) }}</td>
Expand Down

0 comments on commit 13b6397

Please sign in to comment.