mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-25 02:17:35 +01:00
Allow data on tool items. Fixes BUKKIT-3773
This commit is contained in:
parent
2e47a1eb80
commit
ff1c1daf69
@ -150,7 +150,7 @@ public final class ItemStack {
|
||||
|
||||
public void setData(int i) {
|
||||
// CraftBukkit start - filter out data for items that shouldn't have it
|
||||
if (!this.usesData()) {
|
||||
if (!(this.usesData() || Item.byId[this.id].o())) { // Should be canBeDepleted
|
||||
i = 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user