* @param isBuildable - Initial allow state
* @return True if permitted, False if not
*/
@SuppressWarnings("deprecation")
public static boolean canBuildBlock(org.bukkit.block.Block block, Material type, boolean isBuildable) {
return CommonUtil.callEvent(new BlockCanBuildEvent(block, type.getId(), true)).isBuildable();
}