Adding gitignore

This commit is contained in:
WayofTime 2014-10-31 17:54:59 -04:00
parent a2b006105e
commit ecf0a7912e
1084 changed files with 90178 additions and 3 deletions

View file

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