aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0253-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0253-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch')
-rw-r--r--patches/server/0253-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/patches/server/0253-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch b/patches/server/0253-Make-CraftWorld-loadChunk-int-int-false-load-unconve.patch
new file mode 100644
index 0000000000..2761673c5a
--- /dev/null
+++ b/patches/server/0253-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 9849c255ed68309da27ba2c9156c50e89c29d498..b067ac26973ac487cc3386ecda2bfd8def2d8bbf 100644
+--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
++++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
+@@ -392,7 +392,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) {