Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 21:10:17 +01:00
Fix removing enchantments causing the enchantment tag to remain.
Dieser Commit ist enthalten in:
Ursprung
54b2707ba7
Commit
b908c192bf
@ -233,11 +233,12 @@ public final class CraftItemStack extends ItemStack {
|
||||
if (index == Integer.MIN_VALUE) {
|
||||
return 0;
|
||||
}
|
||||
if (index == 0 && size == 0) {
|
||||
if (index == 0 && size == 1) {
|
||||
handle.tag.o(ENCHANTMENTS.NBT);
|
||||
if (handle.tag.d()) {
|
||||
handle.tag = null;
|
||||
}
|
||||
return ((NBTTagCompound) list.get(0)).getShort(ENCHANTMENTS_ID.NBT);
|
||||
}
|
||||
|
||||
listCopy = new NBTTagList(ENCHANTMENTS.NBT);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren