mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-01-10 17:57:37 +00:00
Don't grow pumpkin patches on non-grass blocks.
This commit is contained in:
parent
c5fdfa7a0d
commit
b3e03f59ac
@ -163,6 +163,10 @@ public class GardenPatchGenerator implements RegionFunction {
|
|||||||
position = position.add(0, 1, 0);
|
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);
|
BaseBlock leavesBlock = new BaseBlock(BlockID.LEAVES);
|
||||||
|
|
||||||
editSession.setBlockIfAir(position, leavesBlock);
|
editSession.setBlockIfAir(position, leavesBlock);
|
||||||
|
Loading…
Reference in New Issue
Block a user