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

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

Try removing if(!world.isRemote). Tell me what happens. This might be a client/server issue. If it's not, a forge expert will probably correct me in 5 milliseconds. ;)

No problem. ;)

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.