mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-09 00:54:44 +02:00
Merge branch 'v6' into v7
# Conflicts: # .github/workflows/codeql.yml # Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java # Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java # Core/src/main/java/com/plotsquared/core/command/Add.java # Core/src/main/java/com/plotsquared/core/command/Caps.java # Core/src/main/java/com/plotsquared/core/command/Cluster.java # Core/src/main/java/com/plotsquared/core/command/Continue.java # Core/src/main/java/com/plotsquared/core/command/Copy.java # Core/src/main/java/com/plotsquared/core/command/Save.java # Core/src/main/java/com/plotsquared/core/command/Visit.java # Core/src/main/java/com/plotsquared/core/plot/Plot.java # build.gradle.kts
This commit is contained in:
@ -239,9 +239,11 @@ public final class BukkitChunkCoordinator extends ChunkCoordinator {
|
||||
* server's main thread.
|
||||
*/
|
||||
private void processChunk(final @NonNull Chunk chunk) {
|
||||
/* Chunk#isLoaded does not necessarily return true shortly after PaperLib#getChunkAtAsync completes, but the chunk is
|
||||
still loaded.
|
||||
if (!chunk.isLoaded()) {
|
||||
throw new IllegalArgumentException(String.format("Chunk %d;%d is is not loaded", chunk.getX(), chunk.getZ()));
|
||||
}
|
||||
throw new IllegalArgumentException(String.format("Chunk %d;%d is is not loaded", chunk.getX(), chunk.getZ());
|
||||
}*/
|
||||
if (finished) {
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user