*Don't set the the cuboid block by block if we've already technically done that

This commit is contained in:
dordsor21 2018-12-20 20:23:11 +00:00
parent 6ac7948f72
commit 780d3d7703

View File

@ -79,8 +79,6 @@ public class GenChunk extends ScopedLocalBlockQueue {
int end = start + 256;
Arrays.fill(data, start, end, block);
}
} else {
super.setCuboid(pos1, pos2, block);
}
int minx = pos1.getX() < pos2.getX() ? pos1.getX() : pos2.getX();
int miny = pos1.getY() < pos2.getY() ? pos1.getY() : pos2.getY();