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

Today I copied and edited furnace tileentity and then started testing. But now I have "TileEntity is missing a mapping! This is a bug!" exception. In 1.9 I can fix it by registering TE with GameRegistry.registerTileEntity(...) but in 1.12 I should use RegistryEvents and hereย is described types of events, and there is no TileEntity! So how I can register my TE?

Edited by MineDen

  • Author
5 minutes ago, V0idWa1k3r said:

It's still GameRegistry#registerTileEntity. Use the overload which takes a ResourceLocation as the second argument though.

ย 

Okay, I'll try this.
UPD: there is no overloads, only string. Is this should be like "testmod:my_tileentity"?

Edited by MineDen

If there are no overloads then you are using a forge version which doesn't have that introduced. In the newer versionย GameRegistry#registerTileEntity(Class<? extends TileEntity> tileEntityClass, String key) is deprecated with a comment that it'll be removed in 1.13.ย 

  • Author
9 minutes ago, V0idWa1k3r said:

If there are no overloads then you are using a forge version which doesn't have that introduced. In the newer versionย GameRegistry#registerTileEntity(Class<? extends TileEntity> tileEntityClass, String key) is deprecated with a comment that it'll be removed in 1.13.ย 

Also I want to open furnace GUI but it doesn't open. Here is my code:

ย 

Block:

public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) {
        if (worldIn.isRemote) {
            return true;
        } else {
            TileEntity tileentity = worldIn.getTileEntity(pos);

            if (tileentity instanceof TileEntityFurnace) {
                playerIn.displayGUIChest((TileEntityFurnace) tileentity);
                playerIn.addStat(TestMod.CHEMICAL_LABORATORY_INTERACT);
            }

            return true;
        }
    }

ย 

TileEntity:

@Nonnull
    public String getGuiID() {
        return "minecraft:furnace";
    }

    @Nonnull
    public Container createContainer(@Nonnull InventoryPlayer playerInventory, @Nonnull EntityPlayer playerIn) {
        return new ContainerFurnace(playerInventory, this);
    }

ย 

Useย IGuiHandler with EntityPlayer#openGui(Object mod, int modGuiId, World world, int x, int y, int z) for your custom GUIs. Your solution will open a gui/container pair of a vanilla furnace which is likely not what you want. If you do want that you can

  • Still use IGuiHandler. Just return vanilla's ContainerFurnace and GuiFurnace in corresponding methods.
  • Make sure that your TE implementsย IInteractionObject. I do not see Override annotations in your code(Code-style issue #2)
  • Author
42 minutes ago, V0idWa1k3r said:

Useย IGuiHandler with EntityPlayer#openGui(Object mod, int modGuiId, World world, int x, int y, int z) for your custom GUIs. Your solution will open a gui/container pair of a vanilla furnace which is likely not what you want. If you do want that you can

  • Still use IGuiHandler. Just return vanilla's ContainerFurnace and GuiFurnace in corresponding methods.
  • Make sure that your TE implementsย IInteractionObject. I do not see Override annotations in your code(Code-style issue #2)

Oh, I forgot that my TE doesn't extend TileEntityFurnace, and I also forgot to change checking in block code!

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.