Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-26 02:50:06 +01:00
Make EditSession#center (//center) set even y blocks.
At some point this was fixed for x and z but never for y...
Dieser Commit ist enthalten in:
Ursprung
6ab74dc7e5
Commit
a1465c02ed
@ -1028,8 +1028,10 @@ public class EditSession implements Extent, AutoCloseable {
|
|||||||
Region centerRegion = new CuboidRegion(
|
Region centerRegion = new CuboidRegion(
|
||||||
getWorld(), // Causes clamping of Y range
|
getWorld(), // Causes clamping of Y range
|
||||||
BlockVector3.at(((int) center.getX()), ((int) center.getY()), ((int) center.getZ())),
|
BlockVector3.at(((int) center.getX()), ((int) center.getY()), ((int) center.getZ())),
|
||||||
BlockVector3.at(MathUtils.roundHalfUp(center.getX()),
|
BlockVector3.at(
|
||||||
center.getY(), MathUtils.roundHalfUp(center.getZ())));
|
MathUtils.roundHalfUp(center.getX()),
|
||||||
|
MathUtils.roundHalfUp(center.getY()),
|
||||||
|
MathUtils.roundHalfUp(center.getZ())));
|
||||||
return setBlocks(centerRegion, pattern);
|
return setBlocks(centerRegion, pattern);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren