mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
... Fixed dispensers again!
This commit is contained in:
parent
5412d6f5a8
commit
e1586e017a
@ -43,7 +43,7 @@ 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 (Item.byId[this.id].getMaxStackSize() == 1) {
|
if (enchantments != null && Item.byId[this.id].getMaxStackSize() == 1) {
|
||||||
if (this.tag == null) {
|
if (this.tag == null) {
|
||||||
this.setTag(new NBTTagCompound());
|
this.setTag(new NBTTagCompound());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user