Adjusted ordering of schematic block copying.

This commit is contained in:
tastybento 2019-05-25 12:34:53 -07:00
parent f7ee12527a
commit fc082558d5

View File

@ -157,8 +157,8 @@ public class BlueprintClipboard {
*/
private List<Vector> getVectors(BoundingBox b) {
List<Vector> r = new ArrayList<>();
for (int x = (int)b.getMinX(); x <= b.getMaxX(); x++) {
for (int y = (int)b.getMinY(); y <= b.getMaxY(); y++) {
for (int y = (int)b.getMinY(); y <= b.getMaxY(); y++) {
for (int x = (int)b.getMinX(); x <= b.getMaxX(); x++) {
for (int z = (int)b.getMinZ(); z <= b.getMaxZ(); z++) {
r.add(new Vector(x,y,z));
}