]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix race_CheckName by actually using the given arg
authordrjaska <drjaska83@gmail.com>
Mon, 26 Aug 2024 03:23:30 +0000 (06:23 +0300)
committerdrjaska <drjaska83@gmail.com>
Mon, 26 Aug 2024 03:26:51 +0000 (06:26 +0300)
// Check if the given name already exists in race rankings?
// In that case, where? (otherwise return 0)
int race_CheckName(string net_name)

qcsrc/common/gamemodes/gamemode/race/cl_race.qc

index fa9ecafedaaf220de23b2acf939615b1123d3157..d0c3c03724d865f1a991858f435f1bb85de4b14e 100644 (file)
@@ -13,11 +13,12 @@ float race_status_time;
 int race_status_prev;
 string race_status_name_prev;
 
-// Check if the given name already exist in race rankings? In that case, where? (otherwise return 0)
+// Check if the given name already exists in race rankings?
+// In that case, where? (otherwise return 0)
 int race_CheckName(string net_name)
 {
        int rank = 0;
-       string zoned_name = strzone(strdecolorize(entcs_GetName(player_localnum)));
+       string zoned_name = strzone(strdecolorize(net_name));
        for (int i = RANKINGS_CNT - 1; i >= 0; --i)
                if (strdecolorize(grecordholder[i]) == zoned_name)
                {