2018-10-22 01:16:54 +02:00
|
|
|
From 7ac07ac07ac07ac07ac07ac07ac07ac07ac07ac0 Mon Sep 17 00:00:00 2001
|
2018-09-29 07:22:21 +02: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-10-22 01:16:54 +02:00
|
|
|
index 7ac07ac07ac0..7ac07ac07ac0 100644
|
2018-09-29 07:22:21 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
2018-10-24 03:13:58 +02:00
|
|
|
@@ -1185,7 +1185,7 @@ public class Chunk implements IChunkAccess {
|
2018-09-29 07:22:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isReady() {
|
|
|
|
- return this.C.a(ChunkStatus.POSTPROCESSED);
|
|
|
|
+ return true; // Paper - Always send chunks
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean v() {
|
2018-10-24 03:13:58 +02:00
|
|
|
@@ -1423,6 +1423,13 @@ public class Chunk implements IChunkAccess {
|
2018-10-02 15:06:52 +02:00
|
|
|
this.h.clear();
|
2018-09-29 07:22:21 +02: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-10-22 01:16:54 +02:00
|
|
|
index 7ac07ac07ac0..7ac07ac07ac0 100644
|
2018-09-29 07:22:21 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerChunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerChunk.java
|
|
|
|
@@ -23,7 +23,7 @@ public class PlayerChunk {
|
|
|
|
private int dirtyCount;
|
|
|
|
private int h;
|
|
|
|
private long i;
|
|
|
|
- private boolean done;
|
|
|
|
+ boolean done; // Paper - package-private
|
|
|
|
|
|
|
|
// CraftBukkit start - add fields
|
|
|
|
// You know the drill, https://hub.spigotmc.org/stash/projects/SPIGOT/repos/craftbukkit/browse
|
2018-10-22 01:16:54 +02:00
|
|
|
@@ -155,6 +155,7 @@ public class PlayerChunk {
|
2018-09-29 07:22:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public boolean sendAll() { return b(); } // Paper - OBFHELPER
|
|
|
|
public boolean b() {
|
|
|
|
if (this.done) {
|
|
|
|
return true;
|
|
|
|
--
|
2018-10-23 01:16:21 +02:00
|
|
|
2.19.1
|
2018-09-29 07:22:21 +02:00
|
|
|
|