diff --git a/mappings/net/minecraft/client/render/entity/feature/ArmorFeatureRenderer.mapping b/mappings/net/minecraft/client/render/entity/feature/ArmorFeatureRenderer.mapping index 8432987128..2f49aa934f 100644 --- a/mappings/net/minecraft/client/render/entity/feature/ArmorFeatureRenderer.mapping +++ b/mappings/net/minecraft/client/render/entity/feature/ArmorFeatureRenderer.mapping @@ -1,11 +1,13 @@ CLASS net/minecraft/unmapped/C_giodsxsr net/minecraft/client/render/entity/feature/ArmorFeatureRenderer - FIELD f_nbwazbpw leggingsModel Lnet/minecraft/unmapped/C_kbsahqug; + FIELD f_bvfqvqnj smallOuterModel Lnet/minecraft/unmapped/C_kbsahqug; + FIELD f_nbwazbpw innerModel Lnet/minecraft/unmapped/C_kbsahqug; FIELD f_rmdlnqgr armorAtlas Lnet/minecraft/unmapped/C_qwirmgcf; - FIELD f_uaapfnoe bodyModel Lnet/minecraft/unmapped/C_kbsahqug; + FIELD f_uaapfnoe outerModel Lnet/minecraft/unmapped/C_kbsahqug; + FIELD f_uewsfucf smallInnerModel Lnet/minecraft/unmapped/C_kbsahqug; + METHOD (Lnet/minecraft/unmapped/C_mjeyymcw;Lnet/minecraft/unmapped/C_kbsahqug;Lnet/minecraft/unmapped/C_kbsahqug;Lnet/minecraft/unmapped/C_kbsahqug;Lnet/minecraft/unmapped/C_kbsahqug;Lnet/minecraft/unmapped/C_wosoicga;)V + ARG 6 modelManager METHOD (Lnet/minecraft/unmapped/C_mjeyymcw;Lnet/minecraft/unmapped/C_kbsahqug;Lnet/minecraft/unmapped/C_kbsahqug;Lnet/minecraft/unmapped/C_wosoicga;)V ARG 1 context - ARG 2 leggingsModel - ARG 3 bodyModel ARG 4 modelManager METHOD m_flcuqnsy renderArmor (Lnet/minecraft/unmapped/C_cnszsxvd;Lnet/minecraft/unmapped/C_igrgeffe;Lnet/minecraft/unmapped/C_sddaxwyk;Lnet/minecraft/unmapped/C_yuycoehb;ILnet/minecraft/unmapped/C_kbsahqug;)V ARG 1 matrices @@ -24,6 +26,7 @@ CLASS net/minecraft/unmapped/C_giodsxsr net/minecraft/client/render/entity/featu ARG 1 bipedModel ARG 2 slot METHOD m_nqjkolqg renderArmor (Lnet/minecraft/unmapped/C_cjzoxshv;Lnet/minecraft/unmapped/C_cnszsxvd;Lnet/minecraft/unmapped/C_igrgeffe;ILnet/minecraft/unmapped/C_vglbnrob;Lnet/minecraft/unmapped/C_kbsahqug;Z)V + ARG 1 material ARG 2 matrices ARG 3 vertexConsumers ARG 4 light @@ -35,5 +38,5 @@ CLASS net/minecraft/unmapped/C_giodsxsr net/minecraft/client/render/entity/featu ARG 2 vertexConsumers ARG 3 light ARG 4 model - METHOD m_uqvpbazc usesSecondLayer (Lnet/minecraft/unmapped/C_yuycoehb;)Z + METHOD m_uqvpbazc usesInnerModel (Lnet/minecraft/unmapped/C_yuycoehb;)Z ARG 1 slot diff --git a/mappings/net/minecraft/recipe/ArmorDyeRecipe.mapping b/mappings/net/minecraft/recipe/ArmorDyeRecipe.mapping deleted file mode 100644 index 87b65662fc..0000000000 --- a/mappings/net/minecraft/recipe/ArmorDyeRecipe.mapping +++ /dev/null @@ -1 +0,0 @@ -CLASS net/minecraft/unmapped/C_efmveflh net/minecraft/recipe/ArmorDyeRecipe diff --git a/mappings/net/minecraft/recipe/DyeableRecipe.mapping b/mappings/net/minecraft/recipe/DyeableRecipe.mapping new file mode 100644 index 0000000000..f8b426ee85 --- /dev/null +++ b/mappings/net/minecraft/recipe/DyeableRecipe.mapping @@ -0,0 +1,11 @@ +CLASS net/minecraft/unmapped/C_efmveflh net/minecraft/recipe/DyeableRecipe + COMMENT Recipe that applies a {@link net.minecraft.item.DyeItem DyeItem} to an item in + COMMENT {@link net.minecraft.registry.tag.ItemTags#DYEABLE ItemTags.DYEABLE}. + COMMENT

+ COMMENT If the {@link net.minecraft.registry.tag.ItemTags#DYEABLE DYEABLE} item already has a + COMMENT {@link net.minecraft.component.type.DyedColorComponent DyedColorComponent}, + COMMENT its {@link net.minecraft.component.type.DyedColorComponent#rgb() color} is combined with the + COMMENT {@link net.minecraft.item.DyeItem DyeItem}'s {@link net.minecraft.item.DyeItem#getColor() color}.
+ COMMENT Otherwise, a new {@link net.minecraft.component.type.DyedColorComponent component} is added to the + COMMENT {@link net.minecraft.registry.tag.ItemTags#DYEABLE DYEABLE} item with the + COMMENT {@link net.minecraft.item.DyeItem DyeItem}'s {@link net.minecraft.item.DyeItem#getColor() color}.