13
0
geforkt von Mirrors/Paper

[Bleeding] Fixed crafting enchanted items, fixes BUKKIT-602

By: Wesley Wolfe <weswolf@aol.com>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2012-03-02 13:23:27 -06:00
Ursprung 5abe32ff6c
Commit 6924051264

Datei anzeigen

@ -127,7 +127,7 @@ public class CraftInventoryCrafting extends CraftInventory implements CraftingIn
if (item == null || item.getTypeId() <= 0) {
contents[0] = null;
} else {
contents[0] = new net.minecraft.server.ItemStack( item.getTypeId(), item.getAmount(), item.getDurability());
contents[0] = CraftItemStack.createNMSItemStack(item);
}
}