X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fscores.qh;h=45af93992aacdf33f7d8338867fe73a43807b2a3;hb=74ab8f6ab3ac4b44608a6c61cd0393202fd8fb4a;hp=3bc6c55636c65fa4e3875d0bf2b328e0f3a0aa02;hpb=d44927502027bfa3ccd6ccc98d9b7d6285c182c3;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/scores.qh b/qcsrc/common/scores.qh index 3bc6c5563..45af93992 100644 --- a/qcsrc/common/scores.qh +++ b/qcsrc/common/scores.qh @@ -15,18 +15,21 @@ STATIC_INIT(Scores_renumber) { FOREACH(Scores, true, it.m_id = i); } * Score indices */ -// game mode specific indices are not in common/, but in server/scores_rules.qc! #ifdef GAMEQC +// fields not networked via the score system REGISTER_SP(END); REGISTER_SP(PING); REGISTER_SP(PL); REGISTER_SP(NAME); -REGISTER_SP(KDRATIO); -REGISTER_SP(SUM); - REGISTER_SP(SEPARATOR); +REGISTER_SP(KDRATIO); // kills / deaths +REGISTER_SP(SUM); // kills - deaths +REGISTER_SP(FRAGS); // kills - suicides + +// networked fields + REGISTER_SP(SCORE); REGISTER_SP(DMG); @@ -36,7 +39,6 @@ REGISTER_SP(KILLS); REGISTER_SP(DEATHS); REGISTER_SP(SUICIDES); REGISTER_SP(TEAMKILLS); -REGISTER_SP(FRAGS); REGISTER_SP(ELO);