Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

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.

there is no matching constructor in your Entity class, use your IDE to create the correct constructor 

Edited by Luis_ST

  • Author

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.