package net.minecraft.item; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Items; import net.minecraft.world.World; public class ItemSoup extends ItemFood { private static final String __OBFID = "CL_00001778"; public ItemSoup(int p_i45330_1_) { super(p_i45330_1_, false); this.setMaxStackSize(1); } /** * Called when the item in use count reach 0, e.g. item food eaten. Return the new ItemStack. Args : stack, world, * entity */ public ItemStack onItemUseFinish(ItemStack p_77654_1_, World p_77654_2_, EntityPlayer p_77654_3_) { super.onItemUseFinish(p_77654_1_, p_77654_2_, p_77654_3_); return new ItemStack(Items.bowl); } }