Hey,
I tried to create a Creative Mode Tab but in the game only the arrows appear to go to the next "page" but there is no tab on the next page. I created and registered the tab as explained in the forge docs. Does anyone have similar problems? Could be a bug. If it isn't a bug, where could the error be?
public static final DeferredRegister<CreativeModeTab> TAB = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, MODID);
public static final RegistryObject<CreativeModeTab> TEST_TAB = TAB.register("test_tab",
() -> CreativeModeTab.builder()
.title(Component.translatable("itemGroup.test_tab"))
.icon(() -> ItemInit.COBALT_INGOT.get().getDefaultInstance())
.build());
That's how I registered it:
ClassName.TAB.register(modEventBus);
Ingame it looks like this:
Thank you for your help