2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
571 B
Java

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);
}
public ItemStack onEaten(ItemStack p_77654_1_, World p_77654_2_, EntityPlayer p_77654_3_)
{
super.onEaten(p_77654_1_, p_77654_2_, p_77654_3_);
return new ItemStack(Items.bowl);
}
}