Fixed crash with dispensers dispensing dispensables
Dieser Commit ist enthalten in:
Ursprung
fa7ad9a264
Commit
5412d6f5a8
@ -43,11 +43,13 @@ public final class ItemStack {
|
|||||||
public ItemStack(int id, int count, int data, NBTTagList enchantments) {
|
public ItemStack(int id, int count, int data, NBTTagList enchantments) {
|
||||||
this(id, count, data);
|
this(id, count, data);
|
||||||
// taken from .addEnchantment
|
// taken from .addEnchantment
|
||||||
if (this.tag == null) {
|
if (Item.byId[this.id].getMaxStackSize() == 1) {
|
||||||
this.setTag(new NBTTagCompound());
|
if (this.tag == null) {
|
||||||
}
|
this.setTag(new NBTTagCompound());
|
||||||
|
}
|
||||||
|
|
||||||
this.tag.set("ench", enchantments); // modify this part to use passed in enchantments list
|
this.tag.set("ench", enchantments.clone()); // modify this part to use passed in enchantments list
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
|
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren