aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/container.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea/src/container.rs')
-rw-r--r--azalea/src/container.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea/src/container.rs b/azalea/src/container.rs
index 2261469d..56770524 100644
--- a/azalea/src/container.rs
+++ b/azalea/src/container.rs
@@ -2,7 +2,7 @@ use std::fmt::Formatter;
use azalea_client::{
inventory::{CloseContainerEvent, ContainerClickEvent, InventoryComponent},
- packet_handling::PacketEvent,
+ packet_handling::game::PacketEvent,
Client,
};
use azalea_core::BlockPos;
@@ -36,7 +36,7 @@ impl ContainerClientExt for Client {
/// let target_pos = bot
/// .world()
/// .read()
- /// .find_block(bot.position(), &azalea::Block::Chest.into());
+ /// .find_block(bot.position(), &azalea::registry::Block::Chest.into());
/// let Some(target_pos) = target_pos else {
/// bot.chat("no chest found");
/// return;