mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 17:01:56 +01:00
Merge pull request #340 from phase/master
Fix infinite loop when saving chunks
This commit is contained in:
commit
290af99931
1 changed files with 21 additions and 0 deletions
|
@ -0,0 +1,21 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jadon Fowler <jadonflower@gmail.com>
|
||||||
|
Date: Fri, 17 Jun 2016 02:26:58 -0700
|
||||||
|
Subject: [PATCH] Fix infinite loop when saving chunks
|
||||||
|
|
||||||
|
Running `/save-all flush` would start an infinite loop that prints:
|
||||||
|
ThreadedAnvilChunkStorage (world): All chunks are saved
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/ChunkRegionLoader.java b/src/main/java/net/minecraft/server/ChunkRegionLoader.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/ChunkRegionLoader.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/ChunkRegionLoader.java
|
||||||
|
@@ -0,0 +0,0 @@ public class ChunkRegionLoader implements IChunkLoader, IAsyncChunkSaver {
|
||||||
|
if (this.c()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
+ break; // Paper - fix infinite loop when saving chunks
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
this.f = false;
|
||||||
|
--
|
Loading…
Reference in a new issue