aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/tests/simulation
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2026-01-12 02:09:41 -0600
committerGitHub <noreply@github.com>2026-01-12 02:09:41 -0600
commit1accbac964168af5fa0d87cb170389f0a9d01363 (patch)
tree1509b26c19beaa23a492289f6bf00d3958be44d5 /azalea-client/tests/simulation
parent58339b9d229592dee40e15b8648fe4075cc391f4 (diff)
downloadazalea-drasl-1accbac964168af5fa0d87cb170389f0a9d01363.tar.xz
Make Bevy dependencies optional in azalea-protocol (#303)
* Make Bevy dependencies optional in azalea-protocol * derive serde traits on Direction again * update docs for types that may not have Component
Diffstat (limited to 'azalea-client/tests/simulation')
-rw-r--r--azalea-client/tests/simulation/move_and_despawn_entity.rs2
-rw-r--r--azalea-client/tests/simulation/move_despawned_entity.rs2
-rw-r--r--azalea-client/tests/simulation/teleport_movement.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/azalea-client/tests/simulation/move_and_despawn_entity.rs b/azalea-client/tests/simulation/move_and_despawn_entity.rs
index 6c334a47..f05c64f4 100644
--- a/azalea-client/tests/simulation/move_and_despawn_entity.rs
+++ b/azalea-client/tests/simulation/move_and_despawn_entity.rs
@@ -8,7 +8,7 @@ use azalea_protocol::{
},
};
use azalea_registry::builtin::EntityKind;
-use azalea_world::MinecraftEntityId;
+use azalea_core::entity_id::MinecraftEntityId;
#[test]
fn test_move_and_despawn_entity() {
diff --git a/azalea-client/tests/simulation/move_despawned_entity.rs b/azalea-client/tests/simulation/move_despawned_entity.rs
index 7a171dae..48c22bf6 100644
--- a/azalea-client/tests/simulation/move_despawned_entity.rs
+++ b/azalea-client/tests/simulation/move_despawned_entity.rs
@@ -3,7 +3,7 @@ use azalea_core::position::ChunkPos;
use azalea_entity::metadata::Cow;
use azalea_protocol::packets::{ConnectionProtocol, game::ClientboundMoveEntityRot};
use azalea_registry::builtin::EntityKind;
-use azalea_world::MinecraftEntityId;
+use azalea_core::entity_id::MinecraftEntityId;
use bevy_ecs::query::With;
use tracing::Level;
diff --git a/azalea-client/tests/simulation/teleport_movement.rs b/azalea-client/tests/simulation/teleport_movement.rs
index 06a8f0b6..ff06ebb5 100644
--- a/azalea-client/tests/simulation/teleport_movement.rs
+++ b/azalea-client/tests/simulation/teleport_movement.rs
@@ -16,7 +16,7 @@ use azalea_protocol::{
},
};
use azalea_registry::builtin::BlockKind;
-use azalea_world::MinecraftEntityId;
+use azalea_core::entity_id::MinecraftEntityId;
#[test]
fn test_teleport_movement() {