From 84cd261118c9d1e3145d4d1751c0d22098cd8cd8 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 9 Dec 2025 11:23:45 -0600 Subject: 1.21.11 (#273) * run codegen for 25w44a * 25w44a * 25w46a * rename ResourceLocation to Identifier per mojmap changes * update changelog * 1.21.11-pre1 * 1.21.11-pre2 * 1.21.11-pre3 * add AttackRange fields from pre4 * 1.21.11-rc3 * 1.21.11 --- azalea-entity/src/data.rs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'azalea-entity/src/data.rs') diff --git a/azalea-entity/src/data.rs b/azalea-entity/src/data.rs index 22eb68d6..c535bb72 100644 --- a/azalea-entity/src/data.rs +++ b/azalea-entity/src/data.rs @@ -90,6 +90,7 @@ pub enum EntityDataValue { WolfSoundVariant(azalea_registry::WolfSoundVariant), FrogVariant(azalea_registry::FrogVariant), PigVariant(azalea_registry::PigVariant), + ZombieNautilusVariant(azalea_registry::ZombieNautilusVariant), OptionalGlobalPos(Option), PaintingVariant(azalea_registry::PaintingVariant), SnifferState(SnifferStateKind), @@ -99,6 +100,7 @@ pub enum EntityDataValue { Vector3(Vec3f32), Quaternion(Quaternion), ResolvableProfile(components::Profile), + HumanoidArm(HumanoidArm), } #[derive(Clone, Debug, PartialEq)] @@ -209,3 +211,10 @@ pub enum WeatheringCopperStateKind { Weathered, Oxidized, } + +#[derive(AzBuf, Clone, Copy, Debug, PartialEq, Eq, Default)] +pub enum HumanoidArm { + Left = 0, + #[default] + Right = 1, +} -- cgit v1.2.3