]> git.xonotic.org Git - xonotic/xonstat.git/commitdiff
LMS and RC aren't supported either.
authorAnt Zucaro <azucaro@gmail.com>
Sat, 22 Sep 2018 15:29:38 +0000 (11:29 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Sat, 22 Sep 2018 15:29:38 +0000 (11:29 -0400)
xonstat/views/submission.py

index bb9ff85d5850c37269fa0ede47fa6347b8a683d7..567d8a4777ba67eb3e6b3c48be0d32a8230e4b37 100644 (file)
@@ -738,16 +738,10 @@ def create_default_game_stat(session, game_type_cd):
         pgstat.captures = pgstat.drops = pgstat.pushes = pgstat.destroys = 0
         pgstat.carrier_frags = 0
 
-    if game_type_cd == 'lms':
-        pgstat.kills = pgstat.deaths = pgstat.suicides = pgstat.lives = 0
-
     if game_type_cd == 'nb':
         pgstat.kills = pgstat.deaths = pgstat.suicides = pgstat.captures = 0
         pgstat.drops = 0
 
-    if game_type_cd == 'rc':
-        pgstat.kills = pgstat.deaths = pgstat.suicides = pgstat.laps = 0
-
     return pgstat
 
 
@@ -857,7 +851,7 @@ def create_default_team_stat(session, game_type_cd):
     # all team game modes have a score, so we'll zero that out always
     teamstat.score = 0
 
-    if game_type_cd in 'ca' 'ft' 'lms' 'ka':
+    if game_type_cd in 'ca' 'ft' 'ka':
         teamstat.rounds = 0
 
     if game_type_cd == 'ctf':