Fixed bug where End not being deleted.

This commit is contained in:
tastybento 2021-01-30 10:35:26 -08:00
parent 2bef0fe57c
commit 0372d6766f
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public class DeleteIslandChunks {
// 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);