return getOtherHalf(block) != null;
}
@Override
public boolean onDestroy(Block block, Cause<?> cause) {
Chest c = block.get(Chest.class);
Inventory inventory;
if (c != null) {
inventory = c.getInventory();
} else {
return false;
}
boolean shouldD = super.onDestroy(block, cause);
if (shouldD) {