mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-11 13:21:10 +01:00
Fix GridMap free navigation RID error spam
Fixes GridMap free navigation RID error spam.
This commit is contained in:
parent
a76df86ef3
commit
6eb9ac3085
@ -476,7 +476,10 @@ bool GridMap::_octant_update(const OctantKey &p_key) {
|
||||
|
||||
//erase navigation
|
||||
for (RBMap<IndexKey, Octant::NavMesh>::Element *E = g.navmesh_ids.front(); E; E = E->next()) {
|
||||
NavigationServer::get_singleton()->free(E->get().region);
|
||||
if (E->get().region.is_valid()) {
|
||||
NavigationServer::get_singleton()->free(E->get().region);
|
||||
E->get().region = RID();
|
||||
}
|
||||
if (E->get().navmesh_debug_instance.is_valid()) {
|
||||
RS::get_singleton()->free(E->get().navmesh_debug_instance);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user