mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-21 05:44:17 +00:00
[Bleeding] Fixed crafting enchanted items, fixes BUKKIT-602
This commit is contained in:
parent
bfe455e1b6
commit
e86aed077e
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue