aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-08-17 20:28:45 -0600
committermat <git@matdoes.dev>2025-08-17 20:28:45 -0600
commitc2ada754f9888fe791a5f604534c55cc6da71590 (patch)
tree6c1dd113269a56a265544320304f1f33f84184a9
parent89564da6b1ed2b424a4649d230a694b425e015cb (diff)
downloadazalea-drasl-c2ada754f9888fe791a5f604534c55cc6da71590.tar.xz
remove unused imports in testbot
-rw-r--r--azalea/examples/testbot/commands/debug.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/azalea/examples/testbot/commands/debug.rs b/azalea/examples/testbot/commands/debug.rs
index 8d24794d..b3a8b419 100644
--- a/azalea/examples/testbot/commands/debug.rs
+++ b/azalea/examples/testbot/commands/debug.rs
@@ -14,13 +14,10 @@ use azalea::{
world::MinecraftEntityId,
};
use azalea_core::hit_result::HitResult;
-use azalea_entity::{
- EntityKindComponent,
- metadata::{ItemFrame, ItemFrameItem},
-};
-use azalea_inventory::components::{MapId, MaxStackSize};
+use azalea_entity::EntityKindComponent;
+use azalea_inventory::components::MaxStackSize;
use azalea_world::InstanceContainer;
-use bevy_ecs::{event::Events, query::With};
+use bevy_ecs::event::Events;
use parking_lot::Mutex;
use super::{CommandSource, Ctx};