diff options
Diffstat (limited to 'azalea-core/src')
| -rwxr-xr-x | azalea-core/src/slot.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-core/src/slot.rs b/azalea-core/src/slot.rs index 4406e08d..22961437 100755 --- a/azalea-core/src/slot.rs +++ b/azalea-core/src/slot.rs @@ -1,7 +1,7 @@ // TODO: have an azalea-inventory or azalea-container crate and put this there use azalea_buf::{BufReadError, McBuf, McBufReadable, McBufWritable}; -use azalea_nbt::Tag; +use azalea_nbt::Nbt; use std::io::{Cursor, Write}; #[derive(Debug, Clone, Default)] @@ -16,7 +16,7 @@ pub struct SlotData { #[var] pub id: u32, pub count: u8, - pub nbt: Tag, + pub nbt: Nbt, } impl McBufReadable for Slot { |
