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:
Bukkit/Spigot 2012-03-02 12:49:56 -06:00
Ursprung 0e0427ebeb
Commit c9937a01c8

Datei anzeigen

@ -64,7 +64,7 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
if (stack.data != null) { if (stack.data != null) {
this.data = stack.data.clone(); this.data = stack.data.clone();
} }
enchantments.putAll(stack.enchantments); this.addUnsafeEnchantments(stack.getEnchantments());
} }
/** /**