aboutsummaryrefslogtreecommitdiff
path: root/azalea/examples/testbot
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-08-18 08:27:00 +0600
committermat <git@matdoes.dev>2025-08-18 08:27:00 +0600
commit89564da6b1ed2b424a4649d230a694b425e015cb (patch)
tree506e70486842dae3f40799e8794cfdb5e8288284 /azalea/examples/testbot
parent9c6e40051dadeaa67df0acabee003e4a0286f5f1 (diff)
downloadazalea-drasl-89564da6b1ed2b424a4649d230a694b425e015cb.tar.xz
fix DataComponentPatch::get
Diffstat (limited to 'azalea/examples/testbot')
-rw-r--r--azalea/examples/testbot/commands/debug.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/azalea/examples/testbot/commands/debug.rs b/azalea/examples/testbot/commands/debug.rs
index b3a8b419..8d24794d 100644
--- a/azalea/examples/testbot/commands/debug.rs
+++ b/azalea/examples/testbot/commands/debug.rs
@@ -14,10 +14,13 @@ use azalea::{
world::MinecraftEntityId,
};
use azalea_core::hit_result::HitResult;
-use azalea_entity::EntityKindComponent;
-use azalea_inventory::components::MaxStackSize;
+use azalea_entity::{
+ EntityKindComponent,
+ metadata::{ItemFrame, ItemFrameItem},
+};
+use azalea_inventory::components::{MapId, MaxStackSize};
use azalea_world::InstanceContainer;
-use bevy_ecs::event::Events;
+use bevy_ecs::{event::Events, query::With};
use parking_lot::Mutex;
use super::{CommandSource, Ctx};