import net.minecraft.potion.Potion;
public class BleedPot extends Potion{
public BleedPot(int par1, boolean par2, int par3) {
super(par1, null, par2, par3);
}
public Potion setIconIndex(int par1, int par2) {
super.setIconIndex(par1, par2);
return this;
}
}
It seems to be imported and constructed correctly, at least according to the tutorial. TBH, I don't even know where the constructor it's using is from, because the only constructor in the Potion class is protected, and has 3 arguments, and I haven't imported anything else 0_0