Skip to content

Commit

Permalink
Fixed bug where End not being deleted.
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Jan 30, 2021
1 parent 2bef0fe commit 0372d67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private void regenerateChunks() {
// Nether
processChunk(gm, Environment.NETHER, chunkX, chunkZ).thenRun(() ->
// End
processChunk(gm, Environment.NETHER, chunkX, chunkZ).thenRun(() -> finish()))));
processChunk(gm, Environment.THE_END, chunkX, chunkZ).thenRun(() -> finish()))));
}
}, 0L, 20L);

Expand Down

0 comments on commit 0372d67

Please sign in to comment.