mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-23 19:25:12 +01:00
Adjusted ordering of schematic block copying.
This commit is contained in:
parent
f7ee12527a
commit
fc082558d5
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user