From: Ant Zucaro Date: Sun, 18 Dec 2011 20:18:24 +0000 (-0500) Subject: Swap blue and red team color numbers. I had the two mixed up. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ee77d7dd4135f9aac4d656048bee125687ae91f1;p=xonotic%2Fxonstat.git Swap blue and red team color numbers. I had the two mixed up. --- diff --git a/xonstat/models.py b/xonstat/models.py index 23d4a41..f7ec2fb 100755 --- a/xonstat/models.py +++ b/xonstat/models.py @@ -102,10 +102,10 @@ class PlayerGameStat(object): def team_html_color(self): # blue if self.team == 5: - return "blue" + return "red" # red if self.team == 14: - return "red" + return "blue" if self.team == 13: return "yellow" if self.team == 10: