Update CraftBukkit to Minecraft 1.4.4.

This commit is contained in:
Travis Watkins
2012-11-06 06:05:28 -06:00
parent a0c3b4f9d1
commit 7f7192f8fd
169 changed files with 3295 additions and 2774 deletions

View File

@@ -66,7 +66,13 @@ public class RecipesMapClone extends ShapelessRecipes implements IRecipe { // Cr
}
if (itemstack != null && i >= 1) {
return new ItemStack(Item.MAP, i + 1, itemstack.getData());
ItemStack itemstack2 = new ItemStack(Item.MAP, i + 1, itemstack.getData());
if (itemstack.s()) {
itemstack2.c(itemstack.r());
}
return itemstack2;
} else {
return null;
}