21 lines
528 B
Java
21 lines
528 B
Java
![]() |
package WayofTime.alchemicalWizardry.common.items.potion;
|
||
|
|
||
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
||
|
import cpw.mods.fml.relauncher.Side;
|
||
|
import cpw.mods.fml.relauncher.SideOnly;
|
||
|
|
||
|
public class MundanePowerCatalyst extends PowerCatalyst
|
||
|
{
|
||
|
public MundanePowerCatalyst()
|
||
|
{
|
||
|
super(1);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
@SideOnly(Side.CLIENT)
|
||
|
public void registerIcons(IIconRegister iconRegister)
|
||
|
{
|
||
|
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:MundanePowerCatalyst");
|
||
|
}
|
||
|
}
|