Ice spell effect solidly 9/12 done

Added some models to the spell effect blocks. Texturing needs work.
This commit is contained in:
WayofTime 2014-02-07 16:22:08 -05:00
parent 456d4990bf
commit 1fbaf9a3f4
9 changed files with 95 additions and 21 deletions

View file

@ -0,0 +1,18 @@
package WayofTime.alchemicalWizardry.common;
import net.minecraft.potion.Potion;
public class PotionIceCloak extends Potion
{
public PotionIceCloak(int par1, boolean par2, int par3)
{
super(par1, par2, par3);
}
@Override
public Potion setIconIndex(int par1, int par2)
{
super.setIconIndex(par1, par2);
return this;
}
}