Jump to content

[SOLVED] [1.19.3] ItemStackHandler/Capability/Menu Inventory Problem


Luckydel

Recommended Posts

I need to put an item in a menu cell.
I use something like this.

Spoiler
itemstack.getCapability(ForgeCapabilities.ITEM_HANDLER, null).ifPresent(capability -> {
        if(entity instanceof Player player){
          
		for(int i = 0; i < inventory.getContainerSize(); ++i) {
          
            itemStack = inventory.getItem(i);

            if(predicate.test(itemStack)){

                itemHandler.insertItem(0,itemStack,false);
                //inventory.removeItem(stack); 
                return;
            }
        }
        }
});

 

The problem is that the item is duplicated without removeItem. And with it, the object turns into AIR and does not work.
I have a menu, dragging to the slot works fine.

I'm sure I'm doing something wrong, can you please advise?

ICapability class

Spoiler
@Mod.EventBusSubscriber(Dist.CLIENT)
public class GunShot_Capability implements ICapabilitySerializable<CompoundTag> {
    @SubscribeEvent
    @OnlyIn(Dist.CLIENT)
    public static void onItemDropped(ItemTossEvent event) {
        if (event.getEntity().getItem().getItem() == ForgeModItems.AK47.get()) {
            if (Minecraft.getInstance().screen instanceof Gun_Screen) {
                Minecraft.getInstance().player.closeContainer();
            }
        }
    }

    private final LazyOptional<ItemStackHandler> inventory = LazyOptional.of(this::createItemHandler);

    @Override
    public <T> LazyOptional<T> getCapability(@Nonnull Capability<T> capability, @Nullable Direction side) {
        return capability == ForgeCapabilities.ITEM_HANDLER ? this.inventory.cast() : LazyOptional.empty();
    }

    @Override
    public CompoundTag serializeNBT() {
        return getItemHandler().serializeNBT();
    }

    @Override
    public void deserializeNBT(CompoundTag nbt) {
        getItemHandler().deserializeNBT(nbt);
    }

    private ItemStackHandler createItemHandler() {
        return new ItemStackHandler(9) {
            @Override
            public int getSlotLimit(int slot) {
                return 64;
            }

            @Override
            public boolean isItemValid(int slot, @Nonnull ItemStack stack) {
                return stack.getItem() != ForgeModItems.AK47.get();
            }

            @Override
            public void setSize(int size) {
            }
        };
    }

    private ItemStackHandler getItemHandler() {
        return inventory.orElseThrow(RuntimeException::new);
    }

}

 

(I can provide a class menu if needed)

Edited by Luckydel
Link to comment
Share on other sites

  • Luckydel changed the title to [SOLVED] [1.19.3] ItemStackHandler/Capability/Menu Inventory 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...

×   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.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.