]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/scores_rules.qc
Transifex autosync
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / scores_rules.qc
index 64dfbb03b20529ceebfd1f7bbf1140fbe71e00b6..95f8b482edd65e2fdcf42903658399791cd4ed0f 100644 (file)
@@ -43,18 +43,23 @@ void ScoreRules_basics(int teams, float sprio, float stprio, float score_enabled
        if (!INDEPENDENT_PLAYERS)
        {
                ScoreInfo_SetLabel_PlayerScore(SP_SUICIDES, "suicides", SFL_LOWER_IS_BETTER);
-               ScoreInfo_SetLabel_PlayerScore(SP_TEAMKILLS, "teamkills", SFL_LOWER_IS_BETTER);
+               if (teamplay)
+                       ScoreInfo_SetLabel_PlayerScore(SP_TEAMKILLS, "teamkills", SFL_LOWER_IS_BETTER);
        }
 
        if(score_enabled)
                ScoreInfo_SetLabel_PlayerScore(SP_SCORE, "score", sprio);
 
-       ScoreInfo_SetLabel_PlayerScore(SP_DMG, "dmg", 0);
-       ScoreInfo_SetLabel_PlayerScore(SP_DMGTAKEN, "dmgtaken", SFL_LOWER_IS_BETTER);
-       ScoreInfo_SetLabel_PlayerScore(SP_ELO, "elo", 0);
+       if (!INDEPENDENT_PLAYERS)
+       {
+               ScoreInfo_SetLabel_PlayerScore(SP_DMG, "dmg", 0);
+               ScoreInfo_SetLabel_PlayerScore(SP_DMGTAKEN, "dmgtaken", SFL_LOWER_IS_BETTER);
+
+               ScoreInfo_SetLabel_PlayerScore(SP_ELO, "elo", SFL_NOT_SORTABLE);
+       }
 
        if(STAT(SHOWFPS))
-               ScoreInfo_SetLabel_PlayerScore(SP_FPS, "fps", 0);
+               ScoreInfo_SetLabel_PlayerScore(SP_FPS, "fps", SFL_NOT_SORTABLE);
 }
 
 void ScoreRules_basics_end()