mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-30 11:53:52 -07:00
Only filter data on block items, not all items.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user