diff --git a/src/main/java/cofh/core/item/tool/ItemToolCore.java b/src/main/java/cofh/core/item/tool/ItemToolCore.java index fdd301c5..0b3c623a 100644 --- a/src/main/java/cofh/core/item/tool/ItemToolCore.java +++ b/src/main/java/cofh/core/item/tool/ItemToolCore.java @@ -234,7 +234,7 @@ public int getHarvestLevel(ItemStack stack, String toolClass, @Nullable EntityPl @Override public float getDestroySpeed(ItemStack stack, IBlockState state) { - return (getEffectiveMaterials(stack).contains(state.getMaterial()) || getEffectiveBlocks(stack).contains(state)) ? getEfficiency(stack) : 1.0F; + return (getEffectiveMaterials(stack).contains(state.getMaterial()) || getEffectiveBlocks(stack).contains(state.getBlock())) ? getEfficiency(stack) : 1.0F; } @Override