Isolate Wildfire Female Gender Mod Support

[no changelog]
This commit is contained in:
Linnea Gräf
2024-10-26 18:37:15 +02:00
parent 4308a09f89
commit 928f6a4501
4 changed files with 7 additions and 5 deletions

View File

@@ -1,38 +0,0 @@
package moe.nea.firmament.mixins.custommodels;
import com.llamalad7.mixinextras.injector.wrapoperation.Operation;
import com.llamalad7.mixinextras.injector.wrapoperation.WrapOperation;
import com.llamalad7.mixinextras.sugar.Local;
import com.wildfire.render.GenderArmorLayer;
import moe.nea.firmament.features.texturepack.CustomGlobalArmorOverrides;
import net.minecraft.item.ArmorItem;
import net.minecraft.item.ArmorMaterial;
import net.minecraft.item.ItemStack;
import net.minecraft.registry.entry.RegistryEntry;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Pseudo;
import org.spongepowered.asm.mixin.injection.At;
@Mixin(GenderArmorLayer.class)
@Pseudo
public class PatchArmorTexturesInGenderMod {
@WrapOperation(method = "render(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;ILnet/minecraft/entity/LivingEntity;FFFFFF)V",
at = @At(value = "INVOKE", target = "Lnet/minecraft/item/ArmorItem;getMaterial()Lnet/minecraft/registry/entry/RegistryEntry;"))
private RegistryEntry<ArmorMaterial> replaceArmorMaterial(ArmorItem instance, Operation<RegistryEntry<ArmorMaterial>> original, @Local ItemStack chestplate) {
var entry = original.call(instance);
var overrides = CustomGlobalArmorOverrides.overrideArmor(chestplate);
if (overrides == null)
return entry;
var material = entry.value();
return RegistryEntry.of(new ArmorMaterial(
material.defense(),
material.enchantability(),
material.equipSound(),
material.repairIngredient(),
overrides,
material.toughness(),
material.knockbackResistance()
));
}
}