public EnumAction getItemUseAction(ItemStack stack) {
return EnumAction.drink;
}
this.setMaxStackSize(1);
public ItemStack onEaten(ItemStack stack, World world, EntityPlayer player) {
super.onEaten(stack, world, player);
return new ItemStack(Items.bowl);
}