Don't grow pumpkin patches on non-grass blocks.

This commit is contained in:
sk89q 2014-03-01 16:57:14 -08:00
parent c5fdfa7a0d
commit b3e03f59ac

View File

@ -163,6 +163,10 @@ public class GardenPatchGenerator implements RegionFunction {
position = position.add(0, 1, 0);
}
if (editSession.getBlock(position.add(0, -1, 0)).getType() != BlockID.GRASS) {
return false;
}
BaseBlock leavesBlock = new BaseBlock(BlockID.LEAVES);
editSession.setBlockIfAir(position, leavesBlock);