diff --git a/nms-patches/ChunkProviderServer.patch b/nms-patches/ChunkProviderServer.patch index fa99323392..f33c3aadcc 100644 --- a/nms-patches/ChunkProviderServer.patch +++ b/nms-patches/ChunkProviderServer.patch @@ -46,6 +46,7 @@ } public Chunk getChunkAt(int i, int j) { +- Chunk chunk = this.getOrLoadChunkAt(i, j); + return getChunkAt(i, j, null); + } + @@ -82,7 +83,7 @@ + } + + public Chunk originalGetChunkAt(int i, int j) { - Chunk chunk = this.getOrLoadChunkAt(i, j); ++ Chunk chunk = this.getLoadedChunkAt(i, j); + boolean newChunk = false; + // CraftBukkit end