aboutsummaryrefslogtreecommitdiff
path: root/azalea-entity/src/plugin/indexing.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-08-26 22:19:10 -0500
committermat <git@matdoes.dev>2023-08-26 22:19:10 -0500
commit12118ebfa3f8165c345c98596957b25a156c8b74 (patch)
tree2295753dcacb488755d3b6c6ce405a7a91196f52 /azalea-entity/src/plugin/indexing.rs
parentdea717b68e2945777c68d44ce321639cf09ea226 (diff)
downloadazalea-drasl-12118ebfa3f8165c345c98596957b25a156c8b74.tar.xz
use better pathfinder costs and also fix relative entity updates breaking sometimes
Diffstat (limited to 'azalea-entity/src/plugin/indexing.rs')
-rw-r--r--azalea-entity/src/plugin/indexing.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-entity/src/plugin/indexing.rs b/azalea-entity/src/plugin/indexing.rs
index be5c0a5b..507e6737 100644
--- a/azalea-entity/src/plugin/indexing.rs
+++ b/azalea-entity/src/plugin/indexing.rs
@@ -290,7 +290,7 @@ pub fn remove_despawned_entities_from_indexes(
warn!("Tried to remove entity from chunk {chunk:?} but the entity was not there.");
}
} else {
- warn!("Tried to remove entity from chunk {chunk:?} but the chunk was not found.");
+ debug!("Tried to remove entity from chunk {chunk:?} but the chunk was not found.");
}
// remove it from the uuid index
if entity_infos.entity_by_uuid.remove(uuid).is_none() {