Posted February 12, 20223 yr 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; }
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.