1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

fix ClientboundShowDialog in config

This commit is contained in:
mat 2025-06-27 19:43:54 -04:30
parent 5564d475a2
commit a060b73915

View file

@ -1,9 +1,8 @@
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundConfigPacket;
use azalea_registry::Holder;
use simdnbt::owned::Nbt;
#[derive(Clone, Debug, AzBuf, ClientboundConfigPacket)]
pub struct ClientboundShowDialog {
pub dialog: Holder<azalea_registry::Dialog, Nbt>,
pub dialog: Nbt,
}