]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix #2919 "Crash when loading bots on map soylent_ctf_reloaded_v1r1" terencehill/bot_waypoint_fixes 1492/head
authorterencehill <piuntn@gmail.com>
Sun, 23 Mar 2025 18:01:54 +0000 (19:01 +0100)
committerterencehill <piuntn@gmail.com>
Sun, 23 Mar 2025 18:25:56 +0000 (19:25 +0100)
Malformed waypoints now trigger a qc crash instead of an engine crash warning that waypoint file needs fixing

qcsrc/server/bot/default/waypoints.qc

index 0b297e6ed362216de400c904c52a635d00d67c8a..9ed3a00a8c8aa445e46fde4346ef32d14a2bb60e 100644 (file)
@@ -1903,6 +1903,12 @@ float waypoint_loadall()
                if (!s)
                        break;
                m2 = stov(s);
+               if (m1.x > m2.x || m1.y > m2.y || m1.z > m2.z)
+               {
+                       fclose(file);
+                       error(sprintf("Backwards mins/maxs in %s. Waypoint file must be removed or fixed.", filename));
+               }
+
                s = fgets(file);
                if (!s)
                        break;