Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package net.minecraft.server;
2
3public class ItemSoup extends ItemFood {
4
5 public ItemSoup(int i, int j) {
6 super(i, j, false);
7 }
8
9 public ItemStack a(ItemStack itemstack, World world, EntityHuman entityhuman) {
10 super.a(itemstack, world, entityhuman);
11 return new ItemStack(Item.BOWL);
12 }
13}