aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_open_screen.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/c_open_screen.rs')
-rw-r--r--azalea-protocol/src/packets/game/c_open_screen.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_open_screen.rs b/azalea-protocol/src/packets/game/c_open_screen.rs
index b4a38387..cac3495f 100644
--- a/azalea-protocol/src/packets/game/c_open_screen.rs
+++ b/azalea-protocol/src/packets/game/c_open_screen.rs
@@ -1,11 +1,12 @@
use azalea_buf::AzBuf;
use azalea_chat::FormattedText;
use azalea_protocol_macros::ClientboundGamePacket;
+use azalea_registry::builtin::MenuKind;
#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)]
pub struct ClientboundOpenScreen {
#[var]
pub container_id: i32,
- pub menu_type: azalea_registry::MenuKind,
+ pub menu_type: MenuKind,
pub title: FormattedText,
}