diff --git a/src/main/java/taintedmagic/common/blocks/BlockNightshadeBush.java b/src/main/java/taintedmagic/common/blocks/BlockNightshadeBush.java index 54f82e24..f662fa7f 100644 --- a/src/main/java/taintedmagic/common/blocks/BlockNightshadeBush.java +++ b/src/main/java/taintedmagic/common/blocks/BlockNightshadeBush.java @@ -65,7 +65,7 @@ public int getFireSpreadSpeed (final IBlockAccess world, final int x, final int @SubscribeEvent public void onBreak (final BlockEvent.HarvestDropsEvent event) { - if (event.harvester != null && event.harvester.getHeldItem() != null + if (event.block instanceof BlockNightshadeBush && event.harvester != null && event.harvester.getHeldItem() != null && event.harvester.getHeldItem().getItem() instanceof ItemShears) { event.drops.clear(); event.drops.add(new ItemStack(BlockRegistry.BlockNightshadeBush, 1, 0));