package net.minecraft.creativetab; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.item.Item; final class CreativeTabBrewing extends CreativeTabs { CreativeTabBrewing(int par1, String par2Str) { super(par1, par2Str); } @SideOnly(Side.CLIENT) /** * the itemID for the item to be displayed on the tab */ public int getTabIconItemIndex() { return Item.potion.itemID; } }