skip over buffer when pasting trees

This commit is contained in:
dfsek
2021-01-06 11:56:17 -07:00
parent 512edae9c6
commit 23d8a0aeeb
3 changed files with 48 additions and 1 deletions
@@ -22,7 +22,7 @@ public class TerraTree implements Tree {
@Override
public synchronized boolean plant(Location location, Random random) {
return structure.get(random).execute(location.clone().add(0, yOffset, 0), random, Rotation.fromDegrees(90 * random.nextInt(4)));
return structure.get(random).executeDirect(location.clone().add(0, yOffset, 0), random, Rotation.fromDegrees(90 * random.nextInt(4)));
}
@Override