mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-15 23:25:37 +01:00
21 lines
1.2 KiB
Diff
21 lines
1.2 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
||
|
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 e7103b8021141071712759b1056eccb5e3da93b7..880bbf09f77f59824184c1c9dd1ca3c3df09dae9 100644
|
||
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
||
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
||
|
@@ -508,7 +508,7 @@ public class CraftWorld implements World {
|
||
|
@Override
|
||
|
public boolean loadChunk(int x, int z, boolean generate) {
|
||
|
org.spigotmc.AsyncCatcher.catchOp("chunk load"); // Spigot
|
||
|
- IChunkAccess chunk = world.getChunkProvider().getChunkAt(x, z, generate ? ChunkStatus.FULL : ChunkStatus.EMPTY, true);
|
||
|
+ IChunkAccess chunk = world.getChunkProvider().getChunkAt(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 ProtoChunkExtension) {
|