Not for me. I checked the creative tab class file and theres only this as a constructor:
public CreativeTabs(int index, String label)
{
this.tabIndex = index;
this.tabLabel = label;
creativeTabArray[index] = this;
}
I've been following MrCrayFish's 1.8 modding tutorial and in it, he adds a CreativeTab using the constructor (String label), however that constructor is no longer there, there is only the one with (int index, String label). This one doesn't add new tabs, only changes the ones that are already there.
How else would I add a new one?
6 replies
Important Information
By using this site, you agree to our Terms of Use.