Skip to content

Commit

Permalink
fixing yet another typo
Browse files Browse the repository at this point in the history
caused an error when specifying a selection in import mode (CLI)
  • Loading branch information
arvitus committed Sep 19, 2022
1 parent af797ee commit 3b27827
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public boolean execute() {

ChunkSet targetChunks = null;
if (targetSelection != null) {
targetChunks = sourceSelection.getSelectedChunks(target);
targetChunks = targetSelection.getSelectedChunks(target);
}

for (Map.Entry<Point2i, byte[]> sourceData : sourceDataMappingRegion.entrySet()) {
Expand Down

0 comments on commit 3b27827

Please sign in to comment.