Jump to content

[1.12.2] Getting an Entity object from a container's slot


Recommended Posts

Posted

Hi,

 

I have a set of container slots that only allow spawn eggs to be placed in them (by overriding isItemValid), I want to get entity information from the spawn eggs placed in the slots, but I am not sure how to achieve this. Ideally I'd like an Entity object that I could user later in my code.

 

Does anyone know the basic steps to go from spawn egg in container slot -> spawn egg's entity?

Posted

Thanks, I figured it out:

 


            try {
                entity = (EntityLivingBase) ForgeRegistries.ENTITIES.getValue((ItemMonsterPlacer.getNamedIdFrom(stack))).newInstance(worldIn);
            } catch (NullPointerException e) {
                System.out.println(e);
            }

 

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.