X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fscores_rules.qc;h=c1b7f4c5689a13b877641ae9b7ea252a22089fd5;hb=a3e71389992c582ccf77ca5b11d1f0ceee50eb9f;hp=64dfbb03b20529ceebfd1f7bbf1140fbe71e00b6;hpb=15585913a7e3eb6bd1ec6fce51c8dca0f61ce672;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/scores_rules.qc b/qcsrc/server/scores_rules.qc index 64dfbb03b..c1b7f4c56 100644 --- a/qcsrc/server/scores_rules.qc +++ b/qcsrc/server/scores_rules.qc @@ -43,7 +43,8 @@ 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) @@ -51,10 +52,10 @@ void ScoreRules_basics(int teams, float sprio, float stprio, float score_enabled ScoreInfo_SetLabel_PlayerScore(SP_DMG, "dmg", 0); ScoreInfo_SetLabel_PlayerScore(SP_DMGTAKEN, "dmgtaken", SFL_LOWER_IS_BETTER); - ScoreInfo_SetLabel_PlayerScore(SP_ELO, "elo", 0); + 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()