mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
fix
This commit is contained in:
@@ -125,7 +125,11 @@ public class WorldGenerationListener implements Listener {
|
||||
}));
|
||||
}
|
||||
for (CompletableFuture<?> c : futures) {
|
||||
c.join();
|
||||
try {
|
||||
c.join();
|
||||
} catch (RuntimeException ex) {
|
||||
HiddenOre.getPlugin().getLogger().log(Level.WARNING, "Processing chunk", ex);
|
||||
}
|
||||
processed++;
|
||||
nextProgress--;
|
||||
if (nextProgress == 0) {
|
||||
|
||||
Reference in New Issue
Block a user