Jump to content

Recommended Posts

Posted

You're not overriding properly. Show your code.

 

package MinespressoMod;

import java.awt.List;

import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemFood;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class ItemSugaryDrink extends ItemFood {

public ItemSugaryDrink(int par1, int par2, int par3, boolean par4) {
	super(par1, par2, par3, par4);
	setAlwaysEdible();
	setPotionEffect(Potion.moveSpeed.id, 200, 5, 1.0F);
	setCreativeTab(null);
}




public void registerIcons(IconRegister par1IconRegister)
 {
     this.itemIcon = par1IconRegister.registerIcon("Minedrinks:Coffee");
 }

@SideOnly(Side.CLIENT)
public void addInformation(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, List dataList, boolean par4){
     dataList.add("Extra Sugar");
}

}

Posted

You imported the wrong list. Always use @Override if you intend to override, it will help you detect errors like this.

Thanks, sorry to bother you over such a simple problem lol

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.