aboutsummaryrefslogtreecommitdiff
path: root/azalea/src
diff options
context:
space:
mode:
authorUbuntu <github@matdoes.dev>2023-02-07 20:30:47 +0000
committerUbuntu <github@matdoes.dev>2023-02-07 20:30:53 +0000
commitaa886c101b398f52372df6054c00f9387428cac6 (patch)
treed95dee23fe28637fc0ca1a5eb49943adc84afe2f /azalea/src
parentd51b2a29b2911e4be480727e56553fa27cfbfce0 (diff)
downloadazalea-drasl-aa886c101b398f52372df6054c00f9387428cac6.tar.xz
move az_world::entity_info to az_world::entities::info
Diffstat (limited to 'azalea/src')
-rw-r--r--azalea/src/bot.rs5
-rw-r--r--azalea/src/pathfinder/mod.rs2
2 files changed, 2 insertions, 5 deletions
diff --git a/azalea/src/bot.rs b/azalea/src/bot.rs
index 510449d3..1f3822ac 100644
--- a/azalea/src/bot.rs
+++ b/azalea/src/bot.rs
@@ -9,10 +9,7 @@ use azalea_ecs::{
system::{Commands, Query},
AppTickExt,
};
-use azalea_world::{
- entity::{metadata::Player, set_rotation, Jumping, Physics, Position},
- Local,
-};
+use azalea_world::entity::{metadata::Player, set_rotation, Jumping, Local, Physics, Position};
use std::f64::consts::PI;
use crate::pathfinder::PathfinderPlugin;
diff --git a/azalea/src/pathfinder/mod.rs b/azalea/src/pathfinder/mod.rs
index 5246290d..1dfb7a9b 100644
--- a/azalea/src/pathfinder/mod.rs
+++ b/azalea/src/pathfinder/mod.rs
@@ -17,7 +17,7 @@ use azalea_ecs::{
AppTickExt,
};
use azalea_world::entity::metadata::Player;
-use azalea_world::Local;
+use azalea_world::entity::Local;
use azalea_world::{
entity::{Physics, Position, WorldName},
WorldContainer,