![Cosmetic Armor [FABRIC]](https://media.forgecdn.net/avatars/thumbnails/332/317/256/256/637463248304263412.png)
1.19.2 - Rendering entity in world, everytime I open Inventory, my MC crashed
OPdarmawan opened this issue ยท 3 comments
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);
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