Guest User

Untitled

a guest
Jan 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. public class ItemSugaredCoal extends Item
  4. {
  5. private int healAmount;
  6.  
  7. public ItemSugaredCoal (int i, int j)
  8. {
  9. super(i);
  10. maxStackSize = 1;
  11. healAmount = j;
  12. }
  13.  
  14. public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer entityplayer)
  15. {
  16. itemstack.stackSize--;
  17. entityplayer.heal(healAmount);
  18. return itemstack;
  19. }
  20. }
Add Comment
Please, Sign In to add comment