Skip to content

Commit 79cc76f

Browse files
committed
Release v0.4.0
1 parent a1b6c58 commit 79cc76f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ javafx {
1010
modules = [ 'javafx.controls', 'javafx.fxml' ]
1111
}
1212

13-
version = '0.3.0'
13+
version = '0.4.0'
1414

1515
repositories {
1616
mavenLocal()

src/main/java/io/github/notstirred/chunkyeditor/state/vanilla/VanillaWorldState.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ private CompletableFuture<Void> deleteChunks(Executor taskExecutor, Map<VanillaR
126126
}, taskExecutor);
127127

128128
// update the map view with the newly deleted chunks
129-
deletionFuture.whenCompleteAsync((_, throwable) ->
129+
deletionFuture.whenCompleteAsync((v, throwable) ->
130130
regionSelection.forEach((regionPos, chunkPositions) -> {
131131
Dimension dimension = world.currentDimension();
132132
Region region = dimension.getRegion(new ChunkPosition(regionPos.x(), regionPos.z()));

0 commit comments

Comments
 (0)