Posted June 7, 201312 yr Hi! I'm a relatively new modder, but everything was going well until I discovered this: I cannot for the life of me figure out why it would display itemGroup.Epsilon instead of just Epsilon. Code I have that creates the tab: public static CreativeTabs Epsilon = new CreativeTabs("Epsilon") { public ItemStack getIconItemStack() { return new ItemStack(lightstoneIngot, 1, 0); } }; Any Ideas? Thanks!
June 7, 201312 yr LanguageRegistry.instance().addStringLocalization("itemGroup.Epsilon","Epsilon"); Put that in your mod initialization. BEWARE OF GOD --- Co-author of Pentachoron Labs' SBFP Tech.
June 7, 201312 yr Try putting this in your main class file public static CreativeTabs Epsilon = new Epsilon(CreativeTabs.getNextID(), "Epsilon"); This works for me
June 7, 201312 yr Author LanguageRegistry.instance().addStringLocalization("itemGroup.Epsilon","Epsilon"); Put that in your mod initialization. Sweet, this worked! Thanks!
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.