|
@@ -354,9 +354,10 @@ public final class BlockChecks {
|
|
public static boolean canBeCracked(Block block) {
|
|
public static boolean canBeCracked(Block block) {
|
|
switch(block.getType()) {
|
|
switch(block.getType()) {
|
|
case SMOOTH_BRICK:
|
|
case SMOOTH_BRICK:
|
|
- if (block.getData() == 0) {
|
|
|
|
|
|
+ if (block.getData() == 0x0) {
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
+ return false;
|
|
|
|
|
|
default:
|
|
default:
|
|
return false;
|
|
return false;
|