2016-06-23 04:43:02 +02:00
|
|
|
From 506ce6cd06c9470e86bfb6daada661c52da34c39 Mon Sep 17 00:00:00 2001
|
2016-06-11 21:59:28 +02:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Sat, 11 Jun 2016 14:59:15 -0500
|
|
|
|
Subject: [PATCH] MC-80966 - Always send chunk sections
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkSection.java b/src/main/java/net/minecraft/server/ChunkSection.java
|
2016-06-23 04:43:02 +02:00
|
|
|
index a12fa23..27d0f99 100644
|
2016-06-11 21:59:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkSection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkSection.java
|
|
|
|
@@ -64,7 +64,9 @@ public class ChunkSection {
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a() {
|
|
|
|
- return this.nonEmptyBlockCount == 0;
|
|
|
|
+ // Paper - MC-80966
|
|
|
|
+ // Even if there are no blocks, there may be other information associated with the chunk, always send it.
|
|
|
|
+ return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean shouldTick() {
|
|
|
|
--
|
2016-06-23 04:18:41 +02:00
|
|
|
2.9.0
|
2016-06-11 21:59:28 +02:00
|
|
|
|