Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-19 04:50:06 +01:00
Fixed the NPE in inventoryplayer once again, thanks to don4of4
Dieser Commit ist enthalten in:
Ursprung
8062d5c7be
Commit
256d4ba555
@ -312,7 +312,13 @@ public class InventoryPlayer implements IInventory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean b(Block block) {
|
public boolean b(Block block) {
|
||||||
if (block != null && block.material.k()) { // CraftBukkit - fix NPE
|
// CraftBukkit start - fixed NPE
|
||||||
|
if (block == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// CraftBukkit end
|
||||||
|
|
||||||
|
if (block.material.k()) {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
ItemStack itemstack = this.getItem(this.itemInHandIndex);
|
ItemStack itemstack = this.getItem(this.itemInHandIndex);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren