Jump to content

Changing foodStats with Item method onUpdate


Ferrettomato

Recommended Posts

I'm trying to make tools that repair themselves by draining the player's hunger. I tried using the Item's onUpdate method, but I can't add an EntityPlayer object to the parameters or it doesn't call the method. How can I do this?

 

Item class (I've commented out the code involving EntityPlayer so it actually runs, but that's the code I want to use):

package com.ferret.myfirstmod;

import ibxm.Player;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item.ToolMaterial;
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemSword;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.registry.GameRegistry;

public class ItemLightSword extends ItemSword {

private final String name = "lightsword";

protected ItemLightSword(ToolMaterial material, String name) {
	super(material);
	setUnlocalizedName(MyFirstMod.MODID + "_" + name);
}

public void onUpdate(ItemStack stack, World worldIn, Entity entityIn, int itemSlot, boolean isSelected) 
{
	if (stack.getItem() == MyFirstMod.lightsword)
	{
		if (stack.getItemDamage() > 0 /*&& player.getFoodStats().getFoodLevel() > 0*/)
		{
			//player.getFoodStats().addStats(-1, 0);
			stack.setItemDamage(stack.getItemDamage() - 1);
			System.out.println("Item repaired!");
		}
	}
}

}

Link to comment
Share on other sites

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.