aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/bot.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-09-14 16:48:21 -0500
committermat <git@matdoes.dev>2023-09-14 16:48:21 -0500
commit83784d5a350168edaade4620122c2c6d46bc81a2 (patch)
treee126bb4849414fff78d24c65f93376f07f44e634 /azalea/src/bot.rs
parentdea4a656a574318fc011e0545046b0d78b0e816e (diff)
downloadazalea-drasl-83784d5a350168edaade4620122c2c6d46bc81a2.tar.xz
rename Local to LocalEntity
Diffstat (limited to 'azalea/src/bot.rs')
-rw-r--r--azalea/src/bot.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/azalea/src/bot.rs b/azalea/src/bot.rs
index 353ec99f..4c2a7a21 100644
--- a/azalea/src/bot.rs
+++ b/azalea/src/bot.rs
@@ -13,7 +13,8 @@ use azalea_client::mining::Mining;
use azalea_client::TickBroadcast;
use azalea_core::{BlockPos, Vec3};
use azalea_entity::{
- clamp_look_direction, metadata::Player, EyeHeight, Jumping, Local, LookDirection, Position,
+ clamp_look_direction, metadata::Player, EyeHeight, Jumping, LocalEntity, LookDirection,
+ Position,
};
use azalea_physics::PhysicsSet;
use bevy_app::{FixedUpdate, Update};
@@ -52,7 +53,7 @@ pub struct Bot {
#[allow(clippy::type_complexity)]
fn insert_bot(
mut commands: Commands,
- mut query: Query<Entity, (Without<Bot>, With<Local>, With<Player>)>,
+ mut query: Query<Entity, (Without<Bot>, With<LocalEntity>, With<Player>)>,
) {
for entity in &mut query {
commands.entity(entity).insert(Bot::default());