Made yuccas properly generate in the Canyon

This commit is contained in:
Adubbz 2013-05-05 10:34:46 +10:00
parent 32a2940081
commit 62a45a1baf

View file

@ -105,7 +105,7 @@ public class BlockBOPFlower extends BlockFlower
protected boolean canThisPlantGrowOnThisBlockID(int id)
{
return id == Block.grass.blockID || id == Block.dirt.blockID || id == Block.tilledField.blockID || id == Block.sand.blockID;
return id == Block.grass.blockID || id == Block.dirt.blockID || id == Block.tilledField.blockID || id == Block.sand.blockID || id == Blocks.hardDirt.get().blockID;
}
protected boolean canThisPlantGrowOnThisBlockID(int id, int meta)