Jump to content

Setting ItemStack Damage


TLHPoE

Recommended Posts

I have this class:

package tlhpoe.fs.item;

import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;

public class ItemHermesRing extends Item {
public ItemHermesRing() {
	super();
	setMaxStackSize(1);
	setMaxDamage(100);
}

@Override
public void onUpdate(ItemStack is, World world, Entity entity, int par4, boolean par5) {
	if(!world.isRemote)
		if(entity instanceof EntityPlayer) {
			//EntityPlayer player = (EntityPlayer) entity;
			int dmg = is.getItemDamage();
			switch(dmg) {
			case (99):
				//
				return;
			case (1):
				//
				return;
			}
			System.err.println("SETTING TO 99");
			is.setItemDamage(99);
		}
}

@Override
public ItemStack onItemRightClick(ItemStack is, World w, EntityPlayer player) {
	if(!w.isRemote) {
		int dmg = is.getItemDamage();
		switch(dmg) {
		case (99):
			is.setItemDamage(1);
			return is;
		case (1):
			is.setItemDamage(99);
			return is;
		}
	}
	return is;
}
}

 

For some reason, at this part:

@Override
public ItemStack onItemRightClick(ItemStack is, World w, EntityPlayer player) {
	if(!w.isRemote) {
		int dmg = is.getItemDamage();
		switch(dmg) {
		case (99):
			is.setItemDamage(1);
			return is;
		case (1):
			is.setItemDamage(99);
			return is;
		}
	}
	return is;
}

 

Everytime I right click, it goes directly to case (99). Am I doing something wrong with setting the itemstack's damage?

Kain

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.