diff options
| author | mat <git@matdoes.dev> | 2026-02-04 03:50:35 +0400 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-02-04 03:50:35 +0400 |
| commit | f8ddefa70cc53e6385785fb56e7a688a389cf0ab (patch) | |
| tree | 1aeb54c20bddb542d0b70430ebb00563d0627298 /azalea-inventory/src | |
| parent | 26f3474f835a586af8b4383fdc9b83ebc54da299 (diff) | |
| download | azalea-drasl-f8ddefa70cc53e6385785fb56e7a688a389cf0ab.tar.xz | |
fix ClientboundSetEquipment failing to deserialize if using animal armor slots
Diffstat (limited to 'azalea-inventory/src')
| -rw-r--r-- | azalea-inventory/src/components/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea-inventory/src/components/mod.rs b/azalea-inventory/src/components/mod.rs index 3d13725a..908db28f 100644 --- a/azalea-inventory/src/components/mod.rs +++ b/azalea-inventory/src/components/mod.rs @@ -1132,6 +1132,8 @@ impl EquipmentSlot { 3 => Self::Legs, 4 => Self::Chest, 5 => Self::Head, + 6 => Self::Body, + 7 => Self::Saddle, _ => return None, }; Some(value) |
