Browse Source

Fix NavMesh `map_update_id` returning 0 results in errors

(cherry picked from commit d0564f2466cec9d0e108cadf18f2aae642c90be7)
Ben Rog-Wilhelm 2 years ago
parent
commit
f8cf6eb567
1 changed files with 2 additions and 1 deletions
  1. 2 1
      modules/navigation/nav_map.cpp

+ 2 - 1
modules/navigation/nav_map.cpp

@@ -1043,7 +1043,8 @@ void NavMap::sync() {
 		}
 
 		// Update the update ID.
-		map_update_id = (map_update_id + 1) % 9999999;
+		// Some code treats 0 as a failure case, so we avoid returning 0.
+		map_update_id = map_update_id % 9999999 + 1;
 	}
 
 	// Do we have modified obstacle positions?