3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-12 22:20:08 +01:00

Fixed north face not being set with non-singleblockpatterns.

Dieser Commit ist enthalten in:
TomyLobo 2012-02-07 00:34:18 +01:00
Ursprung 09f3364d9f
Commit ea4ee34810

Datei anzeigen

@ -1489,7 +1489,7 @@ public class EditSession {
for (int x = minX; x <= maxX; ++x) { for (int x = minX; x <= maxX; ++x) {
for (int y = minY; y <= maxY; ++y) { for (int y = minY; y <= maxY; ++y) {
Vector minV = new Vector(x, y, minZ); Vector minV = new Vector(x, y, minZ);
if (setBlock(min, pattern.next(minV))) { if (setBlock(minV, pattern.next(minV))) {
++affected; ++affected;
} }
Vector maxV = new Vector(x, y, maxZ); Vector maxV = new Vector(x, y, maxZ);