Cease execution if block is AIR. Fixes BUKKIT-2104

This commit is contained in:
Wesley Wolfe
2012-08-05 21:31:36 -05:00
parent a574ec54cc
commit 44234c47ce
2 changed files with 1 additions and 6 deletions

View File

@@ -363,12 +363,6 @@ public class PlayerInventory implements IInventory {
}
public boolean b(Block block) {
// CraftBukkit start - fixed NPE
if (block == null) {
return false;
}
// CraftBukkit end
if (block.material.isAlwaysDestroyable()) {
return true;
} else {