Cosmetic Armor [FABRIC]

Cosmetic Armor [FABRIC]

3M Downloads

1.19.2 - Rendering entity in world, everytime I open Inventory, my MC crashed

OPdarmawan opened this issue ยท 3 comments

commented

The following diff on top of the 1.19 branch worked for me to get this mod working on 1.19.2

diff --git a/src/main/java/io/github/apace100/cosmetic_armor/mixin/MixinCosmeticArmorVisibility.java b/src/main/java/io/github/apace100/cosmetic_armor/mixin/MixinCosmeticArmorVisibility.java
index 844585b..927a0f5 100644
--- a/src/main/java/io/github/apace100/cosmetic_armor/mixin/MixinCosmeticArmorVisibility.java
+++ b/src/main/java/io/github/apace100/cosmetic_armor/mixin/MixinCosmeticArmorVisibility.java
@@ -38,7 +38,7 @@ public abstract class MixinCosmeticArmorVisibility<T extends LivingEntity, M ext

        @Shadow protected abstract void setVisible(A bipedModel, EquipmentSlot slot);

-       @Shadow protected abstract boolean usesSecondLayer(EquipmentSlot slot);
+       @Shadow protected abstract boolean usesInnerModel(EquipmentSlot slot);

        @Shadow protected abstract void renderArmorParts(MatrixStack matrices, VertexConsumerProvider vertexConsumers, int light, ArmorItem item, boolean usesSecondLayer, A model, boolean legs, float red, float green, float blue, @Nullable String overlay);

@@ -102,7 +102,7 @@ public abstract class MixinCosmeticArmorVisibility<T extends LivingEntity, M ext
                }
                this.getContextModel().setAttributes(model);
                this.setVisible(model, armorSlot);
-               boolean bl = this.usesSecondLayer(armorSlot);
+               boolean bl = this.usesInnerModel(armorSlot);
                boolean bl2 = itemStack.hasGlint();
                if (armorItem instanceof DyeableArmorItem) {
                        int i = ((DyeableArmorItem)armorItem).getColor(itemStack);
commented

Yeah I basically took the 1.19 branch and made the changes from the 1.19.3 branch needed for it to work on 1.19.2

commented

Hey there, I've not succeeded in getting this to work on 1.19.2, but I can see that the diff was applied on the 1.19.3 branch.