From 2c610826fc9f8e16897f52313faa8e0602d1dc3d Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 19 Nov 2023 22:07:38 -0600 Subject: Replace azalea-nbt with simdnbt (#111) * delete azalea-nbt and replace with simdnbt * use simdnbt from crates.io * remove serde dependency on azalea-registry --- codegen/lib/code/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'codegen/lib/code/utils.py') diff --git a/codegen/lib/code/utils.py b/codegen/lib/code/utils.py index 0050ce7b..cb835ecb 100755 --- a/codegen/lib/code/utils.py +++ b/codegen/lib/code/utils.py @@ -56,7 +56,7 @@ def burger_type_to_rust_type(burger_type, field_name: Optional[str] = None, inst field_type_rs = 'BlockPos' uses.add('azalea_core::position::BlockPos') elif burger_type == 'nbtcompound': - field_type_rs = 'azalea_nbt::Nbt' + field_type_rs = 'simdnbt::owned::NbtCompound' elif burger_type == 'itemstack': field_type_rs = 'Slot' uses.add('azalea_core::slot::Slot') -- cgit v1.2.3