2018-12-18 01:56:54 +00:00
|
|
|
From aa5ba3307b20dc28bb7487fac1fb9624ab18501e Mon Sep 17 00:00:00 2001
|
2018-09-29 05:22:21 +00:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 29 Sep 2018 01:18:16 -0400
|
|
|
|
Subject: [PATCH] Fix Sending Chunks to Client
|
|
|
|
|
|
|
|
Vanilla has some screwy logic that doesn't send a chunk until
|
|
|
|
it has been post processed. This is an issue as post processing
|
|
|
|
doesn't occur until all neighbor chunks have been loaded.
|
|
|
|
|
|
|
|
This can reduce view distance while generating terrain, but also
|
|
|
|
cause bugs where chunks are never sent to the client.
|
|
|
|
|
|
|
|
This fix always sends chunks to the client, and simply updates
|
|
|
|
the client anytime post processing is triggered with the new chunk data.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
|
2018-12-18 01:56:54 +00:00
|
|
|
index ccdc171d4..7751ae444 100644
|
2018-09-29 05:22:21 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
2018-12-18 01:56:54 +00:00
|
|
|
@@ -1200,7 +1200,7 @@ public class Chunk implements IChunkAccess {
|
2018-09-29 05:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isReady() {
|
|
|
|
- return this.C.a(ChunkStatus.POSTPROCESSED);
|
|
|
|
+ return true; // Paper - Always send chunks
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean v() {
|
2018-12-18 01:56:54 +00:00
|
|
|
@@ -1438,6 +1438,13 @@ public class Chunk implements IChunkAccess {
|
2018-10-02 13:06:52 +00:00
|
|
|
this.h.clear();
|
2018-09-29 05:22:21 +00:00
|
|
|
this.a(ChunkStatus.POSTPROCESSED);
|
|
|
|
this.m.a(this);
|
|
|
|
+ // Paper start - resend chunk after post process
|
|
|
|
+ PlayerChunk playerChunk = ((WorldServer) world).getPlayerChunkMap().getChunk(locX, locZ);
|
|
|
|
+ if (playerChunk != null) {
|
|
|
|
+ playerChunk.done = false;
|
|
|
|
+ playerChunk.sendAll();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerChunk.java b/src/main/java/net/minecraft/server/PlayerChunk.java
|
2018-12-17 05:18:06 +00:00
|
|
|
index e61538b3c..f5d971bbe 100644
|
2018-09-29 05:22:21 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerChunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerChunk.java
|
2018-12-17 05:18:06 +00:00
|
|
|
@@ -18,7 +18,7 @@ public class PlayerChunk {
|
2018-09-29 05:22:21 +00:00
|
|
|
private int dirtyCount;
|
|
|
|
private int h;
|
|
|
|
private long i;
|
|
|
|
- private boolean done;
|
|
|
|
+ boolean done; // Paper - package-private
|
2018-12-17 05:18:06 +00:00
|
|
|
boolean chunkExists; // Paper
|
|
|
|
// Paper start
|
|
|
|
PaperAsyncChunkProvider.CancellableChunkRequest chunkRequest;
|
|
|
|
@@ -144,6 +144,7 @@ public class PlayerChunk {
|
2018-09-29 05:22:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public boolean sendAll() { return b(); } // Paper - OBFHELPER
|
|
|
|
public boolean b() {
|
|
|
|
if (this.done) {
|
|
|
|
return true;
|
|
|
|
--
|
2018-12-15 01:17:27 +00:00
|
|
|
2.20.0
|
2018-09-29 05:22:21 +00:00
|
|
|
|