Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 05:20:05 +01:00
Teach nms ItemStack constructor how to take enchantments
Dieser Commit ist enthalten in:
Ursprung
14754c71a2
Commit
d34e289434
@ -39,6 +39,18 @@ public final class ItemStack {
|
||||
this.setData(k); // CraftBukkit
|
||||
}
|
||||
|
||||
// CraftBukkit - used to create a new ItemStack, specifying the enchantments at time of creation.
|
||||
public ItemStack(int id, int count, int data, NBTTagList enchantments) {
|
||||
this(id, count, data);
|
||||
// taken from .addEnchantment
|
||||
if (this.tag == null) {
|
||||
this.setTag(new NBTTagCompound());
|
||||
}
|
||||
|
||||
this.tag.set("ench", enchantments); // modify this part to use passed in enchantments list
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
||||
public static ItemStack a(NBTTagCompound nbttagcompound) {
|
||||
ItemStack itemstack = new ItemStack();
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren