Jump to content

Recommended Posts

Posted

I seem to be overlooking something as I am getting an error I'm not sure how to fix, as I thought I did it correctly.

public class EntityInit {
    private static final DeferredRegister<EntityType<?>> ENTITIES = DeferredRegister.create(ForgeRegistries.ENTITIES, PrimitiveStart.MODID);

    public static void initialize() {
        ENTITIES.register(FMLJavaModLoadingContext.get().getModEventBus());
    }

    public static final RegistryObject<EntityType<BoneArrow>> BONE_ARROW = ENTITIES.register("bone_arrow",
            () -> EntityType.Builder
                    .of(BoneArrow::new, MobCategory.MISC)
                    .sized(0.5F, 0.5F)
                    .clientTrackingRange(4)
                    .updateInterval(20)
                    .build(new ResourceLocation(PrimitiveStart.MODID, "bone_arrow").toString())
    );
}

Above code seems to have the following problem:

2VnQAHR.png

This is the BoneArrow class in question:

public class BoneArrow extends AbstractArrow {

    public BoneArrow(EntityType<? extends AbstractArrow> p_36721_, Level p_36722_) {
        super(p_36721_, p_36722_);
    }

    public BoneArrow(LivingEntity p_36718_, Level p_36719_) {
        super(EntityInit.BONE_ARROW.get(), p_36718_, p_36719_);
    }

    @Override
    protected ItemStack getPickupItem() {
        return new ItemStack(ItemInit.BONE_ARROW.get());
    }
}

Any help is appreciated.

Posted

That sadly doesn't work, as it wants this constructor (bottom constructor):

7EPQvWN.png

It should use the top contructor, which it does when I remove the second one:

LIkXfrP.png

However, I need the second constructor, because it is used in the createArrow method:

XZYuniZ.png

Any ideas as to why it is doing this?

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.

Announcements



×
×
  • Create New...

Important Information

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