geforkt von Mirrors/FastAsyncWorldEdit
Fix #288 sphere min/max y
Dieser Commit ist enthalten in:
Ursprung
c2cc4f5aeb
Commit
4a4f5bcc74
@ -1928,6 +1928,8 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
|
|||||||
final int ceilRadiusY = (int) Math.ceil(radiusY);
|
final int ceilRadiusY = (int) Math.ceil(radiusY);
|
||||||
final int ceilRadiusZ = (int) Math.ceil(radiusZ);
|
final int ceilRadiusZ = (int) Math.ceil(radiusZ);
|
||||||
|
|
||||||
|
int yy;
|
||||||
|
|
||||||
double nextXn = invRadiusX;
|
double nextXn = invRadiusX;
|
||||||
forX: for (int x = 0; x <= ceilRadiusX; ++x) {
|
forX: for (int x = 0; x <= ceilRadiusX; ++x) {
|
||||||
final double xn = nextXn;
|
final double xn = nextXn;
|
||||||
@ -1962,19 +1964,21 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
yy = py + y;
|
||||||
|
if (yy <= maxY) {
|
||||||
this.setBlock(px + x, py + y, pz + z, block);
|
this.setBlock(px + x, py + y, pz + z, block);
|
||||||
if (x != 0) this.setBlock(px - x, py + y, pz + z, block);
|
if (x != 0) this.setBlock(px - x, py + y, pz + z, block);
|
||||||
if (z != 0) {
|
if (z != 0) {
|
||||||
this.setBlock(px + x, py + y, pz - z, block);
|
this.setBlock(px + x, py + y, pz - z, block);
|
||||||
if (x != 0) this.setBlock(px - x, py + y, pz - z, block);
|
if (x != 0) this.setBlock(px - x, py + y, pz - z, block);
|
||||||
}
|
}
|
||||||
if (y != 0) {
|
}
|
||||||
this.setBlock(px + x, py - y, pz + z, block);
|
if (y != 0 && (yy = py - y) >= 0) {
|
||||||
if (x != 0) this.setBlock(px - x, py - y, pz + z, block);
|
this.setBlock(px + x, yy, pz + z, block);
|
||||||
|
if (x != 0) this.setBlock(px - x, yy, pz + z, block);
|
||||||
if (z != 0) {
|
if (z != 0) {
|
||||||
this.setBlock(px + x, py - y, pz - z, block);
|
this.setBlock(px + x, yy, pz - z, block);
|
||||||
if (x != 0) this.setBlock(px - x, py - y, pz - z, block);
|
if (x != 0) this.setBlock(px - x, yy, pz - z, block);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren