]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
rename g_cts_cptimes_onlyself -> g_race_cptimes_onlyself
authordrjaska <drjaska83@gmail.com>
Mon, 27 May 2024 09:08:11 +0000 (12:08 +0300)
committerdrjaska <drjaska83@gmail.com>
Mon, 27 May 2024 09:08:11 +0000 (12:08 +0300)
gamemodes-server.cfg
qcsrc/server/race.qc
qcsrc/server/race.qh

index 1a8c632098d71b5beef7c1a2110f74d16f3dc4a8..f2cfe1524f0ed2a2ed58cce070f48515ec61f29a 100644 (file)
@@ -361,7 +361,6 @@ set g_cts 0 "CTS: complete the stage"
 set g_cts_selfdamage 1 "0 = disable all selfdamage and falldamage in cts"
 set g_cts_finish_kill_delay 2 "kill player this many seconds after stage completion to prevent cheating by starting out with more speed than otherwise possible; set it to 0 to not kill or to -1 to kill instantly"
 set g_cts_send_rankings_cnt 15 "send this number of map records to clients"
-set g_cts_cptimes_onlyself 0 "tournament mode: only show player's own checkpoint times"
 set g_cts_removeprojectiles 0 "remove projectiles when the player dies, to prevent using weapons earlier in the stage than intended"
 set g_cts_drop_monster_items 0 "allow killed monsters to drop their items"
 
@@ -593,6 +592,7 @@ set g_race 0 "Race: be faster than your opponents"
 set g_race_qualifying_timelimit 0
 set g_race_qualifying_timelimit_override -1 "qualifying session time limit overriding the mapinfo specified one (use 0 to play without limit, and -1 to use the mapinfo's limit)"
 set g_race_teams 0     "when 2, 3, or 4, the race is played as a team game (the team members can add up their laps)"
+set g_race_cptimes_onlyself 0 "only show player's own checkpoint times"
 
 // ==========
 //  invasion
index e8202296d1ad4a0dceff1c104213d3f8940145ab..90b28190b1842fe64706783d7635ff53730f5ac3 100644 (file)
@@ -222,7 +222,7 @@ void race_SendNextCheckpoint(entity e, float spec) // qualifying only
        float recordtime;
        float myrecordtime = e.race_checkpoint_record[cp];
        string recordholder;
-       if (g_cts && autocvar_g_cts_cptimes_onlyself) {
+       if (autocvar_g_race_cptimes_onlyself) {
                recordtime = myrecordtime;
                recordholder = "";
        } else {
@@ -527,7 +527,7 @@ void race_SendTime(entity e, float cp, float t, float tvalid)
                if(tvalid)
                {
                        float myrecordtime = e.race_checkpoint_record[cp];
-                       if (g_cts && autocvar_g_cts_cptimes_onlyself) {
+                       if (autocvar_g_race_cptimes_onlyself) {
                                recordtime = myrecordtime;
                                recordholder = "";
                        } else {
index 6eb6f9e51d3192d4b1b58719a3df8f0b742ba123..e5638324221611ed8dde97c5d614167f10d70058 100644 (file)
@@ -8,7 +8,7 @@ float race_teams;
 const float ST_RACE_LAPS = 1;
 
 int autocvar_g_cts_send_rankings_cnt = 15;
-bool autocvar_g_cts_cptimes_onlyself = false;
+bool autocvar_g_race_cptimes_onlyself = false;
 
 int g_race_qualifying;