From: Ant Zucaro
+ Playing Time: ${overall_stats[g.game_type_cd].total_playing_time}
+
% if g.game_type_cd in fav_maps:
Favorite Map: ${fav_maps[g.game_type_cd].map_name}
% endif
-
- Win Percentage: ${round(g.win_pct,2)}% (${g.wins} wins, ${g.losses} losses)
+ Win Percentage: ${round(g.win_pct,2)}% (${g.wins} wins, ${g.losses} losses)
+
% if g.game_type_cd in overall_stats:
% if overall_stats[g.game_type_cd].k_d_ratio is not None:
Kill Ratio: ${round(overall_stats[g.game_type_cd].k_d_ratio,2)} (${overall_stats[g.game_type_cd].total_kills} kills, ${overall_stats[g.game_type_cd].total_deaths} deaths)