From: Rudolf Polzer Date: Sat, 10 Jan 2015 16:56:45 +0000 (-0800) Subject: Add missing flag. X-Git-Tag: xonotic-v0.8.0~15 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9c840811bbe2aa5b8cf45c7f4228b001c76cf3bb;p=xonotic%2Fxonotic-data.pk3dir.git Add missing flag. --- diff --git a/qcsrc/server/bot/waypoints.qh b/qcsrc/server/bot/waypoints.qh index 9ac92405d..c43b66de6 100644 --- a/qcsrc/server/bot/waypoints.qh +++ b/qcsrc/server/bot/waypoints.qh @@ -9,6 +9,7 @@ const float WAYPOINTFLAG_NORELINK = 1048576; const float WAYPOINTFLAG_PERSONAL = 524288; const float WAYPOINTFLAG_PROTECTED = 262144; // Useless WP detection never kills these. const float WAYPOINTFLAG_USEFUL = 131072; // Useless WP detection temporary flag. +const float WAYPOINTFLAG_DEAD_END = 65536; // Useless WP detection temporary flag. // fields you can query using prvm_global server to get some statistics about waypoint linking culling float relink_total, relink_walkculled, relink_pvsculled, relink_lengthculled;