Skip to content
This repository was archived by the owner on Feb 19, 2019. It is now read-only.

Commit 09a0461

Browse files
committed
Fix renderEnchantedGlint parameter names
1 parent e929d01 commit 09a0461

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/clientapi/load/mixin/MixinLayerArmorBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
public class MixinLayerArmorBase {
3636

3737
@Inject(method = "renderEnchantedGlint", at = @At("HEAD"), cancellable = true)
38-
private static void renderEnchantedGlint(RenderLivingBase<?> p_188364_0_, EntityLivingBase p_188364_1_, ModelBase model, float p_188364_3_, float p_188364_4_, float p_188364_5_, float p_188364_6_, float p_188364_7_, float p_188364_8_, float p_188364_9_, CallbackInfo ci) {
38+
private static void renderEnchantedGlint(RenderLivingBase<?> renderer, EntityLivingBase entityLivingBaseIn, ModelBase model, float limbSwing, float limbSwingAmount, float partialTicks, float ageTicks, float netHeadYaw, float headPitch, float scale, CallbackInfo ci) {
3939
GlintEffectEvent event = new GlintEffectEvent(GlintEffectEvent.GlintTarget.ARMOR);
4040
ClientAPI.EVENT_BUS.post(event);
4141
if (event.isCancelled())

0 commit comments

Comments
 (0)