This commit is contained in:
okx-code
2025-08-26 12:16:21 +01:00
parent ccb3303368
commit ab4830b72b

View File

@@ -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) {