From: Ant Zucaro Date: Sat, 26 Jan 2013 15:44:31 +0000 (-0500) Subject: Add cq support to the scoreboard. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=307115e0462ca4b832da24b6e48a35f4079938ca;p=xonotic%2Fxonstat.git Add cq support to the scoreboard. --- diff --git a/xonstat/templates/scoreboard.mako b/xonstat/templates/scoreboard.mako index 58f00eb..c92f109 100644 --- a/xonstat/templates/scoreboard.mako +++ b/xonstat/templates/scoreboard.mako @@ -75,6 +75,25 @@ ${scoreboard_header(game_type_cd, pgstats[0])} % endif +% if game_type_cd == 'cq': + + + Nick + % if show_latency: + Ping + % endif + Kills + Deaths + Captured + Released + Score + % if show_elo: + Elo Change + % endif + + +% endif + % if game_type_cd == 'ctf': @@ -129,6 +148,13 @@ ${scoreboard_header(game_type_cd, pgstats[0])} ${pgstat.suicides} % endif +% if game_type_cd == 'cq': + ${pgstat.kills} + ${pgstat.deaths} + ${pgstat.captures} + ${pgstat.drops} +% endif + % if game_type_cd == 'ctf': ${pgstat.kills} ${pgstat.captures}