Jump to content

[SOLVED] Attributes Not Applying


ProudDesk

Recommended Posts

 I have no idea if I'm doing this even near right but when I spawn a chicken next to a zombie I get this error "Can't find attribute minecraft:generic.attack_damage" error.

package me.prouddesk.proudmod.proudmod.common.events;

import me.prouddesk.proudmod.proudmod.ProudMod;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.ai.attributes.Attributes;
import net.minecraft.entity.ai.goal.*;
import net.minecraft.entity.monster.ZombieEntity;
import net.minecraft.entity.passive.ChickenEntity;
import net.minecraftforge.event.entity.EntityAttributeModificationEvent;
import net.minecraftforge.event.entity.EntityJoinWorldEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;


@Mod.EventBusSubscriber(modid = ProudMod.MODID)
public class PlayerEvents {

    @SubscribeEvent
    public static void onEntitySpawn(EntityJoinWorldEvent e)
    {
        Entity mob = e.getEntity();
        if(mob instanceof ChickenEntity) {
            ChickenEntity chick = (ChickenEntity) mob;

            chick.goalSelector.addGoal(2, new MeleeAttackGoal(chick, 1.0D, false));
            chick.targetSelector.addGoal(2, new NearestAttackableTargetGoal<>(chick, ZombieEntity.class, true));
        }
    }

    @SubscribeEvent
    public static void Attributes(EntityAttributeModificationEvent e) {
        e.add(EntityType.CHICKEN, Attributes.ATTACK_DAMAGE, 2.0D);
    }
}
Edited by ProudDesk
Link to comment
Share on other sites

6 hours ago, DietmarKracht said:

You need to register your Attributes void to the Mod Eventbus.

How would I do that?  I tried to register the whole class by doing 

MinecraftForge.EVENT_BUS.register(ChickenAttack.class);

But that doesn't work.

Link to comment
Share on other sites

  • ProudDesk changed the title to Attributes Not Applying
  • ProudDesk changed the title to [SOLVED] Attributes Not Applying

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.