]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/scores_rules.qc
Merge branch 'master' into Lyberta/TeamplayOverhaul
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / scores_rules.qc
index 64c94001fbc5bcd9ab42caffd6d8c86604368a32..17714e4c29bb6bf8ec9fe7888533d5923587b6ba 100644 (file)
@@ -68,10 +68,7 @@ void ScoreRules_generic()
     int teams = 0;
        if (teamplay) {
                CheckAllowedTeams(NULL);
-               if (c1 >= 0) teams |= BIT(0);
-               if (c2 >= 0) teams |= BIT(1);
-               if (c3 >= 0) teams |= BIT(2);
-               if (c4 >= 0) teams |= BIT(3);
+               teams = GetAllowedTeams();
        }
        GameRules_scoring(teams, SFL_SORT_PRIO_PRIMARY, SFL_SORT_PRIO_PRIMARY, {});
 }