Posted May 9, 20214 yr I believe that CreativeTab has been replaced by ItemGroup so i made this code. public class ModItemGroup extends ItemGroup { public ModItemGroup(String Label) { super(Label); } @Override public ItemStack makeIcon() { return new ItemStack(ModItems.Silver_chestplate.get()); } } public class DesignableArmor { public static final ModItemGroup ItemGroup = new ModItemGroup("Designable Armor"); however this has an issue with the name of the tab it appears as itemGroup.Designable Armor. Is there a way to get rid of the itemGroup. part?
May 9, 20214 yr Author So like this? public static final ModItemGroup ItemGroup = new ModItemGroup(DesignableArmor.MOD_ID); but that still doesn't work?
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.