]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Improve comments
authorterencehill <piuntn@gmail.com>
Tue, 13 Apr 2021 13:02:57 +0000 (15:02 +0200)
committerterencehill <piuntn@gmail.com>
Tue, 13 Apr 2021 13:02:57 +0000 (15:02 +0200)
qcsrc/client/hud/panel/scoreboard.qc
qcsrc/common/scores.qh

index 43ebc2e3ff95c03294023cbc039e6c63d44af4db..fd765ed1122bc236f37dc1fed71823195397d4b0 100644 (file)
@@ -470,7 +470,7 @@ void Cmd_Scoreboard_SetFields(int argc)
                PlayerScoreField j;
                switch(str)
                {
-                       // fields without a label (not networked)
+                       // fields without a label (not networked via the score system)
                        case "ping": sbt_field[sbt_num_fields] = SP_PING; break;
                        case "pl": sbt_field[sbt_num_fields] = SP_PL; break;
                        case "name": case "nick": sbt_field[sbt_num_fields] = SP_NAME; have_name = true; break;
index 39510dd9f7fba5d7934df0d1b1d431f907aabf7b..cf50a7fd12ee0ebadbe177ecdea804d84e518a40 100644 (file)
@@ -17,7 +17,7 @@ STATIC_INIT(Scores_renumber) { FOREACH(Scores, true, it.m_id = i); }
 
 // game mode specific indices are not in common/, but in server/scores_rules.qc!
 #ifdef GAMEQC
-// non-networked fields (client only, even though they are defined in the server too)
+// fields not networked via the score system
 REGISTER_SP(END);
 
 REGISTER_SP(PING);