From 307115e0462ca4b832da24b6e48a35f4079938ca Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Sat, 26 Jan 2013 10:44:31 -0500 Subject: [PATCH] Add cq support to the scoreboard. --- xonstat/templates/scoreboard.mako | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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} -- 2.39.2