diff options
Diffstat (limited to 'azalea-entity/src/plugin/indexing.rs')
| -rw-r--r-- | azalea-entity/src/plugin/indexing.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/azalea-entity/src/plugin/indexing.rs b/azalea-entity/src/plugin/indexing.rs index 4e0902e7..6725197e 100644 --- a/azalea-entity/src/plugin/indexing.rs +++ b/azalea-entity/src/plugin/indexing.rs @@ -224,7 +224,9 @@ pub fn remove_despawned_entities_from_indexes( warn!("Tried to remove entity {entity:?} from the uuid index but it was not there."); } if instance.entity_by_id.remove(minecraft_id).is_none() { - warn!("Tried to remove entity {entity:?} from the id index but it was not there."); + debug!( + "Tried to remove entity {entity:?} from the id index but it was not there. This may be expected if you're in a shared instance." + ); } // remove it from every client's EntityIdIndex |
