diff options
author | nea <nea@nea.moe> | 2023-03-27 23:57:20 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-03-27 23:57:20 +0200 |
commit | d4e040403ba047c02a7106b97f712d2c565f4389 (patch) | |
tree | 6d3a4ed3cec220d18686fbe16e075fa2cc4dcbbd /src/nbtdsl.rs | |
parent | e20255889940ab3b16d5103e07f4555ab5d8730c (diff) | |
download | mgasi-d4e040403ba047c02a7106b97f712d2c565f4389.tar.gz mgasi-d4e040403ba047c02a7106b97f712d2c565f4389.tar.bz2 mgasi-d4e040403ba047c02a7106b97f712d2c565f4389.zip |
Standalone world
Diffstat (limited to 'src/nbtdsl.rs')
-rw-r--r-- | src/nbtdsl.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nbtdsl.rs b/src/nbtdsl.rs index 86b2116..4e4baa4 100644 --- a/src/nbtdsl.rs +++ b/src/nbtdsl.rs @@ -55,21 +55,21 @@ impl ShittyToNbt for f64 { #[macro_export] macro_rules! nbt { ( {$($name:literal :: $value:tt),* $(,)? } ) => { - Tag::Compound(vec![ + mcproto_rs::nbt::Tag::Compound(vec![ $( nbt!($value).with_name($name) ),* ]) }; { $($name:literal :: $value:tt),* $(,)? } => { - Tag::Compound(vec![ + mcproto_rs::nbt::Tag::Compound(vec![ $( nbt!($value).with_name($name) ),* ]) }; ([ $($value:tt),* $(,)? ]) => { - Tag::List(vec![ + mcproto_rs::nbt::Tag::List(vec![ $( nbt!($value) ),* |