diff options
| author | mat <git@matdoes.dev> | 2025-03-29 22:29:37 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-03-29 22:29:37 +0000 |
| commit | d0b459e82764987e1f820978e2af2d01a4b91084 (patch) | |
| tree | 104daccd8ca2bc758c99a12366463f062ffbd232 /azalea-protocol/src/packets | |
| parent | 4e5c551d650ad3233f9653aaad07b216191ec5b2 (diff) | |
| download | azalea-drasl-d0b459e82764987e1f820978e2af2d01a4b91084.tar.xz | |
add support for unnamed structs to azalea-buf-macros
Diffstat (limited to 'azalea-protocol/src/packets')
| -rwxr-xr-x | azalea-protocol/src/packets/game/s_container_click.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/s_container_click.rs b/azalea-protocol/src/packets/game/s_container_click.rs index 2f7ef3d8..ed68de6e 100755 --- a/azalea-protocol/src/packets/game/s_container_click.rs +++ b/azalea-protocol/src/packets/game/s_container_click.rs @@ -1,7 +1,7 @@ use std::collections::HashMap; use azalea_buf::AzBuf; -use azalea_inventory::{operations::ClickType, ItemStack}; +use azalea_inventory::{ItemStack, operations::ClickType}; use azalea_protocol_macros::ServerboundGamePacket; #[derive(Clone, Debug, AzBuf, ServerboundGamePacket)] |
