From: antzucaro Date: Sun, 20 Nov 2011 19:25:48 +0000 (-0500) Subject: Pass ALL weapon stats to the accuracy def, not just five. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5ce604d18736b8c1fa5ab5592d9946f6a05f92a6;p=xonotic%2Fxonstat.git Pass ALL weapon stats to the accuracy def, not just five. --- diff --git a/xonstat/templates/game_info.mako b/xonstat/templates/game_info.mako index c8e54f4..a397bcb 100755 --- a/xonstat/templates/game_info.mako +++ b/xonstat/templates/game_info.mako @@ -29,7 +29,7 @@ ${scoreboard(game.game_type_cd, pgstats)} % for pgstat in pgstats: % if pgstat.player_game_stat_id in pwstats: Accuracy for ${pgstat.nick_html_colors()|n}: -${accuracy(pwstats[pgstat.player_game_stat_id][0:5])} +${accuracy(pwstats[pgstat.player_game_stat_id])}

% endif