2014-03-07 12:02:18 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common.potion;
|
2014-02-14 20:20:20 +00:00
|
|
|
|
|
|
|
import net.minecraft.potion.Potion;
|
|
|
|
|
2014-03-07 12:02:18 +00:00
|
|
|
public class PotionFireFuse extends Potion
|
2014-02-14 20:20:20 +00:00
|
|
|
{
|
2014-03-07 12:02:18 +00:00
|
|
|
public PotionFireFuse(int par1, boolean par2, int par3)
|
2014-02-14 20:20:20 +00:00
|
|
|
{
|
|
|
|
super(par1, par2, par3);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Potion setIconIndex(int par1, int par2)
|
|
|
|
{
|
|
|
|
super.setIconIndex(par1, par2);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|