3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-19 13:00:06 +01:00

Only filter data on block items, not all items.

Dieser Commit ist enthalten in:
Travis Watkins 2013-03-18 18:22:13 -05:00
Ursprung d26336eb40
Commit 51d4e647fb

Datei anzeigen

@ -156,7 +156,7 @@ public final class ItemStack {
return;
}
if (!(this.usesData() || Item.byId[this.id].o())) { // Should be canBeDepleted
if (!(this.usesData() || Item.byId[this.id].o() || this.id > 256)) { // Should be canBeDepleted
i = 0;
}