diff --git a/plugins/civmodcore-paper/paper/src/main/java/vg/civcraft/mc/civmodcore/world/locations/chunkmeta/ChunkCoord.java b/plugins/civmodcore-paper/paper/src/main/java/vg/civcraft/mc/civmodcore/world/locations/chunkmeta/ChunkCoord.java index b6cd30029..6533df828 100644 --- a/plugins/civmodcore-paper/paper/src/main/java/vg/civcraft/mc/civmodcore/world/locations/chunkmeta/ChunkCoord.java +++ b/plugins/civmodcore-paper/paper/src/main/java/vg/civcraft/mc/civmodcore/world/locations/chunkmeta/ChunkCoord.java @@ -192,14 +192,10 @@ public class ChunkCoord extends XZWCoord { } public boolean isChunkLoaded() { - if (this.lastUnloadingTime <= 0) { - //being loaded rn, ignore - return true; - } if (this.lastUnloadingTime > 0) { return this.lastUnloadingTime < this.lastLoadingTime; } else { - return true; + return this.lastLoadingTime > 0; } }