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