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.

zimavi

Members
  • Joined

  • Last visited

  1. I've tried to do something, and it suddenly started working. Parchment mapping helped me.
  2. I removed it, but it didn't change the error in any way.
  3. Hello, Forge community! I am trying to make a custom creative tab with hidden items (like command blocks). When I using it on server I get "java.lang.AbstractMethodError: Missing implementation of resolved method 'abstract net.minecraft.world.item.ItemStack m_6976_()' of abstract class net.minecraft.world.item.CreativeModeTab." error. How can I fix this problem? My code for creative tab: public class OperatorCreativeTab { public static CreativeModeTab OPERATOR_TAB; public static void init() { OPERATOR_TAB = new CreativeModeTab("operator_tab") { @Override @OnlyIn(Dist.CLIENT) public void fillItemList(NonNullList<ItemStack> list) { super.fillItemList(list); list.add(Items.COMMAND_BLOCK.getDefaultInstance()); list.add(Items.CHAIN_COMMAND_BLOCK.getDefaultInstance()); list.add(Items.REPEATING_COMMAND_BLOCK.getDefaultInstance()); list.add(Items.COMMAND_BLOCK_MINECART.getDefaultInstance()); list.add(Items.JIGSAW.getDefaultInstance()); list.add(Items.STRUCTURE_BLOCK.getDefaultInstance()); list.add(Items.STRUCTURE_VOID.getDefaultInstance()); list.add(Items.BARRIER.getDefaultInstance()); list.add(Items.DEBUG_STICK.getDefaultInstance()); CompoundTag blockStateTag; ItemStack lightBlockWithNbt; for(int i = 15; i > -1; i--) { blockStateTag = new CompoundTag(); blockStateTag.putInt("level", i); lightBlockWithNbt = Items.LIGHT.getDefaultInstance(); lightBlockWithNbt.addTagElement("BlockStateTag", blockStateTag); list.add(lightBlockWithNbt); } } @Override @OnlyIn(Dist.CLIENT) public ItemStack makeIcon() { return Items.COMMAND_BLOCK.getDefaultInstance(); } @OnlyIn(Dist.CLIENT) @Override public ItemStack getIconItem() { return Items.COMMAND_BLOCK.getDefaultInstance(); } }; } }

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.