Deathblooms no longer count as a Forestry flower

This commit is contained in:
Adubbz 2013-06-01 12:51:57 +10:00
parent 19f719d599
commit 83e413d3fe

View file

@ -263,7 +263,8 @@ public class ForestryIntegration
private static void addFlowers()
{
for (int i = 0; i < 10; ++i) {
FlowerManager.plainFlowers.add(new ItemStack(Blocks.flowers.get(), 1, i));
if (i != 2)
FlowerManager.plainFlowers.add(new ItemStack(Blocks.flowers.get(), 1, i));
}
}