21 lines
560 B
Java
21 lines
560 B
Java
package WayofTime.alchemicalWizardry.common.items.potion;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.client.renderer.texture.IconRegister;
|
|
|
|
public class MundaneLengtheningCatalyst extends LengtheningCatalyst
|
|
{
|
|
public MundaneLengtheningCatalyst(int id)
|
|
{
|
|
super(id, 1);
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public void registerIcons(IconRegister iconRegister)
|
|
{
|
|
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:MundaneLengtheningCatalyst");
|
|
}
|
|
}
|