diff options
Diffstat (limited to 'azalea/src/container.rs')
| -rw-r--r-- | azalea/src/container.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea/src/container.rs b/azalea/src/container.rs index e1a018b0..b5ed74cc 100644 --- a/azalea/src/container.rs +++ b/azalea/src/container.rs @@ -1,10 +1,10 @@ use std::fmt::Debug; use std::fmt::Formatter; +use azalea_client::packet::game::ReceivePacketEvent; use azalea_client::{ Client, inventory::{CloseContainerEvent, ContainerClickEvent, Inventory}, - packet_handling::game::PacketEvent, }; use azalea_core::position::BlockPos; use azalea_inventory::{ItemStack, Menu, operations::ClickOperation}; @@ -234,7 +234,7 @@ impl ContainerHandle { #[derive(Component, Debug)] pub struct WaitingForInventoryOpen; -fn handle_menu_opened_event(mut commands: Commands, mut events: EventReader<PacketEvent>) { +fn handle_menu_opened_event(mut commands: Commands, mut events: EventReader<ReceivePacketEvent>) { for event in events.read() { if let ClientboundGamePacket::ContainerSetContent { .. } = event.packet.as_ref() { commands |
