3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 20:40:08 +01:00

Filter data for items that shouldn't have it and filter wool.

We used to fall Item.filterData() for this but that method is meant for
converting item data to block data during placement and does the wrong
thing for this case. Instead we just see if the item should have data and
if not set it to zero. We also have to filter wool data explicitly because
clients crash when given invalid wool data.
Dieser Commit ist enthalten in:
Travis Watkins 2013-03-16 13:14:09 -05:00
Ursprung a76a5bd36f
Commit 6d88d545e9
2 geänderte Dateien mit 14 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -149,6 +149,19 @@ public final class ItemStack {
}
public void setData(int i) {
// CraftBukkit start - filter out data for items that shouldn't have it
if (!this.usesData()) {
this.damage = 0;
return;
}
// Filter wool to avoid confusing the client
if (this.id == Block.WOOL.id) {
this.damage = Math.min(15, i);
return;
}
// CraftBukkit end
this.damage = i;
if (this.damage < 0) {
this.damage = 0;