Really don't filter out -1 data in ItemStack.
This commit is contained in:
parent
b325ffc8f6
commit
6aaa1e83df
@ -40,10 +40,12 @@ public final class ItemStack {
|
|||||||
this.f = null;
|
this.f = null;
|
||||||
this.id = i;
|
this.id = i;
|
||||||
this.count = j;
|
this.count = j;
|
||||||
this.setData(k); // CraftBukkit
|
// CraftBukkit start - pass to setData to do filtering
|
||||||
if (this.damage < 0) {
|
this.setData(k);
|
||||||
this.damage = 0;
|
//if (this.damage < 0) {
|
||||||
}
|
// this.damage = 0;
|
||||||
|
//}
|
||||||
|
// CraftBukkit end
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ItemStack createStack(NBTTagCompound nbttagcompound) {
|
public static ItemStack createStack(NBTTagCompound nbttagcompound) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user