3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-05 11:00:05 +01:00

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

Dieser Commit ist enthalten in:
sk89q 2014-03-01 16:57:14 -08:00
Ursprung c5fdfa7a0d
Commit b3e03f59ac

Datei anzeigen

@ -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);