mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-24 18:01:26 +02:00
Fix possible fallthrough.
This commit is contained in:
@ -354,9 +354,10 @@ public final class BlockChecks {
|
||||
public static boolean canBeCracked(Block block) {
|
||||
switch(block.getType()) {
|
||||
case SMOOTH_BRICK:
|
||||
if (block.getData() == 0) {
|
||||
if (block.getData() == 0x0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
default:
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user