1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 23:44:38 +00:00

Remove "despawning entity" spam

This commit is contained in:
Mason 2023-08-23 18:02:43 -04:00 committed by GitHub
commit 04c021ddd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -851,7 +851,7 @@ pub fn process_packet_events(ecs: &mut World) {
if let Some(entity) = if let Some(entity) =
instance.write().entity_by_id.remove(&MinecraftEntityId(id)) instance.write().entity_by_id.remove(&MinecraftEntityId(id))
{ {
println!("despawning entity"); //println!("despawning entity");
commands.entity(entity).despawn(); commands.entity(entity).despawn();
} }
} }