diff options
| author | mat <github@matdoes.dev> | 2023-03-23 13:55:33 +0000 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2023-03-23 13:55:33 +0000 |
| commit | ecb3f2ffd7dd4aa26213844a023e37fab4057ed0 (patch) | |
| tree | 0cd0ea7eec8c05cdc8fae0a3ab15ef7c1402383c /azalea-core/src | |
| parent | 2a07962af9a318114f38d3afe748a05212cfbd59 (diff) | |
| download | azalea-drasl-ecb3f2ffd7dd4aa26213844a023e37fab4057ed0.tar.xz | |
rename Tag to Nbt
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 { |
