Jump to content

Cannot Remove Items With Inventory#removeItem()


Erdo

Recommended Posts

Hello

I was making a custom block for my mod and when interacted i want to remove an item and return modified version of it.

If statement for checking item and giving modified item is fine but removing the unmodified item is not working.

Here is the use method of the block :

	@Override
	public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, BlockHitResult result) {
		 
		 if(player.getInventory().contains(ItemInit.RUBY_ROCKS.get().getDefaultInstance())) {
			 
			 
			
			 player.getInventory().add(ItemInit.EXAMPLE_ITEM.get().getDefaultInstance());
			 player.getInventory().removeItem(ItemInit.RUBY_ROCKS.get().getDefaultInstance());
			 return InteractionResult.SUCCESS;
		 }
		
		 return InteractionResult.FAIL;
		
		
	}
	

 

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.