aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-12-27 23:55:12 -1245
committermat <git@matdoes.dev>2025-12-27 23:55:12 -1245
commit25e441944412038da2be4e64854e59169d58305b (patch)
tree2a20133b8d54e96ff9abacd897d19395f58738f1
parent839d536e8020b291bc1d213a5e8e823dc513a940 (diff)
downloadazalea-drasl-25e441944412038da2be4e64854e59169d58305b.tar.xz
remove unused imports
-rw-r--r--azalea/examples/testbot/commands/debug.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/azalea/examples/testbot/commands/debug.rs b/azalea/examples/testbot/commands/debug.rs
index d75b4c0a..f11ced45 100644
--- a/azalea/examples/testbot/commands/debug.rs
+++ b/azalea/examples/testbot/commands/debug.rs
@@ -6,14 +6,13 @@ use azalea::{
BlockPos,
brigadier::prelude::*,
chunks::ReceiveChunkEvent,
- entity::{LookDirection, Position},
- interact::pick::HitResultComponent,
+ entity::Position,
packet::game,
pathfinder::{ExecutingPath, Pathfinder},
world::MinecraftEntityId,
};
use azalea_core::hit_result::HitResult;
-use azalea_entity::{Attributes, EntityKindComponent, EntityUuid, metadata};
+use azalea_entity::{EntityKindComponent, EntityUuid, metadata};
use azalea_inventory::components::MaxStackSize;
use azalea_world::InstanceContainer;
use bevy_app::AppExit;