Posted August 25, 20232 yr 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(); } }; } } Edited August 25, 20232 yr by zimavi
August 25, 20232 yr No code in mods should use @OnlyIn https://forge.gemwire.uk/wiki/Sides#.40OnlyIn Boilerplate: If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one. If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install Large files should be posted to a file sharing site like https://gist.github.com You should also read the support forum sticky post.
August 25, 20232 yr Author I've tried to do something, and it suddenly started working. Parchment mapping helped me.
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.