Fixed the NPE in inventoryplayer once again, thanks to don4of4

This commit is contained in:
Nathan Adams 2011-11-26 01:01:43 +00:00
parent 8062d5c7be
commit 256d4ba555

View File

@ -312,7 +312,13 @@ public class InventoryPlayer implements IInventory {
}
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;
} else {
ItemStack itemstack = this.getItem(this.itemInHandIndex);