Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 13:00:06 +01:00
Allow special crafting data value on items. Fixes BUKKIT-3780
Dieser Commit ist enthalten in:
Ursprung
5515b0ee2b
Commit
737e8c5127
@ -150,6 +150,12 @@ public final class ItemStack {
|
|||||||
|
|
||||||
public void setData(int i) {
|
public void setData(int i) {
|
||||||
// CraftBukkit start - filter out data for items that shouldn't have it
|
// CraftBukkit start - filter out data for items that shouldn't have it
|
||||||
|
// The crafting system uses this value for a special purpose so we have to allow it
|
||||||
|
if (i == 32767) {
|
||||||
|
this.damage = i;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!(this.usesData() || Item.byId[this.id].o())) { // Should be canBeDepleted
|
if (!(this.usesData() || Item.byId[this.id].o())) { // Should be canBeDepleted
|
||||||
i = 0;
|
i = 0;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren