mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-24 10:17:39 +00:00
Fixed odd-lengthed clipboards double flipping in the center as per anon's commit(s).
This commit is contained in:
parent
4c00a24c1d
commit
e4cd6c23b6
@ -197,6 +197,7 @@ public class CuboidClipboard {
|
|||||||
for (int z = 0; z < length; ++z) {
|
for (int z = 0; z < length; ++z) {
|
||||||
for (int y = 0; y < height; ++y) {
|
for (int y = 0; y < height; ++y) {
|
||||||
BaseBlock old = data[xs][y][z].flip(dir);
|
BaseBlock old = data[xs][y][z].flip(dir);
|
||||||
|
if (xs == width - xs - 1) continue;
|
||||||
data[xs][y][z] = data[width - xs - 1][y][z].flip(dir);
|
data[xs][y][z] = data[width - xs - 1][y][z].flip(dir);
|
||||||
data[width - xs - 1][y][z] = old;
|
data[width - xs - 1][y][z] = old;
|
||||||
}
|
}
|
||||||
@ -215,6 +216,7 @@ public class CuboidClipboard {
|
|||||||
for (int x = 0; x < width; ++x) {
|
for (int x = 0; x < width; ++x) {
|
||||||
for (int y = 0; y < height; ++y) {
|
for (int y = 0; y < height; ++y) {
|
||||||
BaseBlock old = data[x][y][zs].flip(dir);
|
BaseBlock old = data[x][y][zs].flip(dir);
|
||||||
|
if (zs == length - zs - 1) continue;
|
||||||
data[x][y][zs] = data[x][y][length - zs - 1].flip(dir);
|
data[x][y][zs] = data[x][y][length - zs - 1].flip(dir);
|
||||||
data[x][y][length - zs - 1] = old;
|
data[x][y][length - zs - 1] = old;
|
||||||
}
|
}
|
||||||
@ -233,6 +235,7 @@ public class CuboidClipboard {
|
|||||||
for (int x = 0; x < width; ++x) {
|
for (int x = 0; x < width; ++x) {
|
||||||
for (int z = 0; z < length; ++z) {
|
for (int z = 0; z < length; ++z) {
|
||||||
BaseBlock old = data[x][ys][z].flip(dir);
|
BaseBlock old = data[x][ys][z].flip(dir);
|
||||||
|
if (ys == height - ys - 1) continue;
|
||||||
data[x][ys][z] = data[x][height - ys - 1][z].flip(dir);
|
data[x][ys][z] = data[x][height - ys - 1][z].flip(dir);
|
||||||
data[x][height - ys - 1][z] = old;
|
data[x][height - ys - 1][z] = old;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user