mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
Additional commit to fix #BUKKIT-24
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
57daa70dec
commit
52416316cb
1 changed files with 5 additions and 1 deletions
|
@ -203,7 +203,11 @@ public class CraftItemStack extends ItemStack {
|
||||||
list.add(subtag);
|
list.add(subtag);
|
||||||
}
|
}
|
||||||
|
|
||||||
tag.set("ench", list);
|
if (enchantments.isEmpty()) {
|
||||||
|
tag.remove("ench");
|
||||||
|
} else {
|
||||||
|
tag.set("ench", list);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public net.minecraft.server.ItemStack getHandle() {
|
public net.minecraft.server.ItemStack getHandle() {
|
||||||
|
|
Loading…
Reference in a new issue