Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

I cant override the addInformation method because it is not in the ItemFood class, so is there anyway of doing this?

  • Author

ItemFood extends Item.

My class already extends ItemFood and i cant extend two classes at a time

  • Author

The addInformation method doesnt seem to be overriding though. Do you know of any other causes of it not working?

  • Author

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");
}

}

  • Author

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.