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

View File

@ -67,7 +67,7 @@ public class DeleteIslandChunks {
// Nether // Nether
processChunk(gm, Environment.NETHER, chunkX, chunkZ).thenRun(() -> processChunk(gm, Environment.NETHER, chunkX, chunkZ).thenRun(() ->
// End // End
processChunk(gm, Environment.NETHER, chunkX, chunkZ).thenRun(() -> finish())))); processChunk(gm, Environment.THE_END, chunkX, chunkZ).thenRun(() -> finish()))));
} }
}, 0L, 20L); }, 0L, 20L);