From 036ced5a8f937041ff5a571e3b32c812f88d60b9 Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Sat, 26 Jan 2013 23:01:11 -0500 Subject: [PATCH] Add kh support to the scoreboard. --- xonstat/templates/scoreboard.mako | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/xonstat/templates/scoreboard.mako b/xonstat/templates/scoreboard.mako index 3a94937..4048955 100644 --- a/xonstat/templates/scoreboard.mako +++ b/xonstat/templates/scoreboard.mako @@ -185,6 +185,29 @@ ${scoreboard_header(game_type_cd, pgstats[0])} % endif +% if game_type_cd == 'kh': + + + Nick + % if show_latency: + Ping + % endif + Kills + Deaths + Pickups + Captures + Losses + Pushes + Destroys + KC Kills + Score + % if show_elo: + Elo Change + % endif + + +% endif + ##### SCOREBOARD ROWS ##### @@ -243,4 +266,15 @@ ${scoreboard_header(game_type_cd, pgstats[0])} ${pgstat.fckills} % endif +% if game_type_cd == 'kh': + ${pgstat.kills} + ${pgstat.deaths} + ${pgstat.pickups} + ${pgstat.captures} + ${pgstat.drops} + ${pgstat.pushes} + ${pgstat.destroys} + ${pgstat.carrier_kills} +% endif + -- 2.39.2