aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/nearest_entity.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2024-02-17 14:43:42 -0600
committermat <git@matdoes.dev>2024-02-17 14:43:42 -0600
commitbe4f13c36c281f086602092098522b3f25fc0680 (patch)
tree599d2de84d06d7d1c31a908a2e89499c62e0a5ca /azalea/src/nearest_entity.rs
parent64d48897afe5bcb40931f8ef8b3594fe275751e8 (diff)
downloadazalea-drasl-be4f13c36c281f086602092098522b3f25fc0680.tar.xz
upgrade deps, bevy 0.13
Diffstat (limited to 'azalea/src/nearest_entity.rs')
-rw-r--r--azalea/src/nearest_entity.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea/src/nearest_entity.rs b/azalea/src/nearest_entity.rs
index 38c9886e..363c8fb0 100644
--- a/azalea/src/nearest_entity.rs
+++ b/azalea/src/nearest_entity.rs
@@ -2,7 +2,7 @@ use azalea_entity::Position;
use azalea_world::{InstanceName, MinecraftEntityId};
use bevy_ecs::{
prelude::Entity,
- query::{ReadOnlyWorldQuery, With},
+ query::{QueryFilter, With},
system::{Query, SystemParam},
};
@@ -44,7 +44,7 @@ use bevy_ecs::{
#[derive(SystemParam)]
pub struct EntityFinder<'w, 's, F = ()>
where
- F: ReadOnlyWorldQuery + 'static,
+ F: QueryFilter + 'static,
{
all_entities:
Query<'w, 's, (&'static Position, &'static InstanceName), With<MinecraftEntityId>>,
@@ -59,7 +59,7 @@ where
impl<'w, 's, 'a, F> EntityFinder<'w, 's, F>
where
- F: ReadOnlyWorldQuery + 'static,
+ F: QueryFilter + 'static,
{
/// Gets the nearest entity to the given position and world instance name.
/// This method will return `None` if there are no entities within range. If