diff --git a/worldedit-core/src/main/java/com/fastasyncworldedit/core/command/tool/brush/FallingSphere.java b/worldedit-core/src/main/java/com/fastasyncworldedit/core/command/tool/brush/FallingSphere.java index 374458ef9..fd720c54e 100644 --- a/worldedit-core/src/main/java/com/fastasyncworldedit/core/command/tool/brush/FallingSphere.java +++ b/worldedit-core/src/main/java/com/fastasyncworldedit/core/command/tool/brush/FallingSphere.java @@ -41,7 +41,7 @@ public class FallingSphere implements Brush { int startY = Math.max(minY, py - yRadius); int endY = Math.min(maxY, py + yRadius); - int heightY = editSession.getHighestTerrainBlock(ax, az, startY, endY); + int heightY = editSession.getHighestTerrainBlock(ax, az, editSession.getMinY(), endY); if (heightY < startY) { int diff = startY - heightY; startY -= diff;