Jump to content

Erdo

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Erdo

  1. Thank you it is working now.
  2. So how do i remove such item?
  3. 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; }
×
×
  • Create New...

Important Information

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