]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Swap blue and red team color numbers. I had the two mixed up.
authorAnt Zucaro <azucaro@gmail.com>
Sun, 18 Dec 2011 20:18:24 +0000 (15:18 -0500)
committerAnt Zucaro <azucaro@gmail.com>
Sun, 18 Dec 2011 20:18:24 +0000 (15:18 -0500)
xonstat/models.py

index 23d4a4181972e39136edb94ee56b6b5c30612925..f7ec2fb635a9132aa85d0941d793d0f1cd37b577 100755 (executable)
@@ -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: