Fix augmented generator not clearing column

This commit is contained in:
Jesse Boyd 2018-07-27 14:02:40 +10:00
parent 645c5fb529
commit cd9d22cb9b
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -130,7 +130,7 @@ public class AugmentedUtils {
for (int x = bxx; x <= txx; x++) {
for (int z = bzz; z <= tzz; z++) {
for (int y = 1; y < 128; y++) {
queue.setBlock(x, y, z, air);
queue.setBlock(bx + x, y, bz + z, air);
}
}
}