aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0237-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0237-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch')
-rw-r--r--patches/server/0237-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/patches/server/0237-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch b/patches/server/0237-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch
new file mode 100644
index 0000000000..0983d9fd9b
--- /dev/null
+++ b/patches/server/0237-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch
@@ -0,0 +1,20 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Spottedleaf <[email protected]>
+Date: Sun, 2 Sep 2018 19:34:33 -0700
+Subject: [PATCH] Make CraftWorld#loadChunk(int, int, false) load unconverted
+ chunks
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
+index 1a3ea592ce33798d01425205fcde452a7bcb8790..b01bbddb8621a4215337c9d04197d5b1f22c8b3b 100644
+--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
++++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
+@@ -431,7 +431,7 @@ public class CraftWorld extends CraftRegionAccessor implements World {
+ @Override
+ public boolean loadChunk(int x, int z, boolean generate) {
+ org.spigotmc.AsyncCatcher.catchOp("chunk load"); // Spigot
+- ChunkAccess chunk = this.world.getChunkSource().getChunk(x, z, generate ? ChunkStatus.FULL : ChunkStatus.EMPTY, true);
++ ChunkAccess chunk = this.world.getChunkSource().getChunk(x, z, generate || isChunkGenerated(x, z) ? ChunkStatus.FULL : ChunkStatus.EMPTY, true); // Paper
+
+ // If generate = false, but the chunk already exists, we will get this back.
+ if (chunk instanceof ImposterProtoChunk) {