Jump to content

Minecraft crashes when I try to summon my entity


ArianKG

Recommended Posts

  1. Use the ModEventBus direct and not the Field you create
  2. move the DeferredRegister into the same class where you use it (where you create the RegistryObjects, what you're not doing yet)
  3. use RegistryObjects instead of static initializer
    public static final Block EXAMPLE = new ExampleBlock();
    // should be:
    public static final RegistryObject<ExampleBlock> EXAMPLE = <DeferredRegister_Field>.register("example", new ExampleBlock());
  4. call RenderingRegistry#registerEntityRenderingHandler in FMLClientSetupEvent and register the Renderer
Edited by Luis_ST
Link to comment
Share on other sites

you haven't, you still store the ModEventBus in a static Field and you register the Renderer of your Entity in FMLCommonSetupEvent and not in FMLClientSetupEvent

Edit: you still use static initializer for your EntityTypes, I would recommend you to look again at the basics for the Registry System: FCW or the Forge doc

Edited by Luis_ST
Link to comment
Share on other sites

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.