diff --git a/src/main/java/com/simibubi/create/foundation/utility/BlockHelper.java b/src/main/java/com/simibubi/create/foundation/utility/BlockHelper.java index 411b227b468..5abe2c3d184 100644 --- a/src/main/java/com/simibubi/create/foundation/utility/BlockHelper.java +++ b/src/main/java/com/simibubi/create/foundation/utility/BlockHelper.java @@ -207,7 +207,8 @@ public static void destroyBlock(Level world, BlockPos pos, float effectChance) { public static void destroyBlock(Level world, BlockPos pos, float effectChance, Consumer droppedItemCallback) { - destroyBlockAs(world, pos, null, ItemStack.EMPTY, effectChance, droppedItemCallback); + ItemStack fallbackTool = new ItemStack(Items.COBBLESTONE); + destroyBlockAs(world, pos, null, fallbackTool, effectChance, droppedItemCallback); } public static void destroyBlockAs(Level level, BlockPos pos, @Nullable Player player, ItemStack usedTool,