Jump to content

Problem with decreasing stackSize in player's inventory


Stjubit

Recommended Posts

Hello,

 

I think I have a very strange problem here:

 

I want to decrease the stackSize of an Item called "ExplodeArrow" when i right click with an Item called "ExplodeGun" and this is how i did it for now:

 

onItemRightClick(...) in ExplodeGun.java

 

@Override
    public ItemStack onItemRightClick(ItemStack is, World world, EntityPlayer ep)
    {
        if(!world.isRemote)
        {
            if(ep.inventory.hasItem(TestMod.explodeArrow))
            {
                ep.inventory.consumeInventoryItem(TestMod.explodeArrow);
                ep.swingItem();
            }
        }

        return is;
    }

 

 

Now the problem:

When i right click my ExplodeGun, the stackSize of my ExplodeArrow decreases, but it won't show up. Only if I restart my Minecraft, the decreased stackSize shows up. I hope that you know what i mean. The stackSize decreases, but you won't see it In-Game until you restart Minecraft. The very strange thing is, that when i edit my ItemStack (is) in the method like "is.stackSize++", it all works and the stackSize of the Arrow decreases In-Game, too.

 

I hope you can help me,

sorry for my bad english :)

thanks to everyone,

 

Julian

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.