001 package net.minecraft.src; 002 003 public class ItemSoup extends ItemFood 004 { 005 public ItemSoup(int par1, int par2) 006 { 007 super(par1, par2, false); 008 this.setMaxStackSize(1); 009 } 010 011 public ItemStack onFoodEaten(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer) 012 { 013 super.onFoodEaten(par1ItemStack, par2World, par3EntityPlayer); 014 return new ItemStack(Item.bowlEmpty); 015 } 016 }