Skip to content

Commit

Permalink
Fix Thaumic Tinkerer infused grain dropping wheat
Browse files Browse the repository at this point in the history
 * Closes #80
  • Loading branch information
squeek502 committed Apr 25, 2015
1 parent 7b6acab commit 913facd
Showing 1 changed file with 9 additions and 0 deletions.
Expand Up @@ -67,6 +67,15 @@ public class IguanaEventHook
harvestDropsBlacklist.add(enderLilly);
}
}

if (Loader.isModLoaded("ThaumicTinkerer"))
{
Block infusedGrain = Block.getBlockFromName("ThaumicTinkerer:infusedGrainBlock");
if (infusedGrain != null)
{
harvestDropsBlacklist.add(infusedGrain);
}
}
}

@SubscribeEvent
Expand Down

0 comments on commit 913facd

Please sign in to comment.