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.

[1.18] Item in hand reapearing when updating capability value on inventoryTick

Featured Replies

Posted

I have problem with item reapearing in players hand after changing capability value. Here is what I mean by reapearing:

 021017d319261196dc6e0e1c4408dfa9.gif 

It only happens when item has tag "active" and energy.consumeEnergy is called. Does it have something to to with capability or im doing something wrong or do i need to sync it with client? Here is the code:

    int tickCounter = 0;

    @Override
    public void inventoryTick(ItemStack stack, Level level, Entity entity, int p_41407_, boolean p_41408_) {
        if (!level.isClientSide()) {
            if (++tickCounter == 20) {
                tickCounter = 0;

                stack.getCapability(ModCapabilities.ENERGY).ifPresent(energy -> {
                    CompoundTag tag = stack.getTag();
                    if (tag != null) {
                        if (tag.getBoolean("active")) {
                            energy.consumeEnergy(Math.min(energy.energyStored(), 100), false);
                        }

                        if (energy.energyStored() == 0) {
                            tag.putBoolean("active", false);
                            stack.setTag(tag);
                        }
                    }
                });
            }
        }

        super.inventoryTick(stack, level, entity, p_41407_, p_41408_);
    }

 

  • Author
1 hour ago, diesieben07 said:

You cannot do this, this will be shared between all instances of your item, client and server. I would recommend you use getGameTime instead, which will increase by 1 every tick.

You can override shouldCauseReequipAnimation in your Item class to control this.

That was easier than i expected, thank you for the advice, i'll use: 

if (level.getGameTime() % 20 == 0)

 

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.