Fixes for AdvancedJackhammer AOE mining. Closes #1935

This commit is contained in:
drcrazy 2019-12-30 14:26:19 +03:00
parent 52de2fc59f
commit 6d514766ed
2 changed files with 5 additions and 1 deletions

View file

@ -129,6 +129,9 @@ public class AdvancedJackhammerItem extends JackhammerItem {
if (blockState.getBlock() instanceof OreBlock){
return false;
}
if (blockState.getBlock() instanceof RedstoneOreBlock){
return false;
}
return (Items.IRON_PICKAXE.isEffectiveOn(blockState));
}