mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +01:00
19972e09b8
5a0150f586ed3eb15fe6f1f596d1a5a7d806f0f9 Fix ITEM_BREAK e6a3911057bd94d8bd7021cbb4923fb84fb106d1 Upstream merge d1cdcf8d4c3639f956474f02ed662517cffbe23e Remove old patch 068df64aeee368377e1673667bffc7a6dcf90554 Rebuild all patches
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From b21eab777645a11ea1aa708457f8529cfa12fd87 Mon Sep 17 00:00:00 2001
|
|
From: Thinkofdeath <thethinkofdeath@gmail.com>
|
|
Date: Mon, 2 Dec 2013 23:42:09 +0000
|
|
Subject: [PATCH] Fix some chunks not being sent to the client
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
|
|
index 208ba6b..e664e55 100644
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
|
@@ -1036,7 +1036,15 @@ public class Chunk {
|
|
}
|
|
|
|
public boolean isReady() {
|
|
- return this.p && this.done && this.lit;
|
|
+ // Spigot Start
|
|
+ /*
|
|
+ * As of 1.7, Mojang added a check to make sure that only chunks which have been lit are sent to the client.
|
|
+ * Unfortunately this interferes with our modified chunk ticking algorithm, which will only tick chunks distant from the player on a very infrequent basis.
|
|
+ * We cannot unfortunately do this lighting stage during chunk gen as it appears to put a lot more noticeable load on the server, than when it is done at play time.
|
|
+ * For now at least we will simply send all chunks, in accordance with pre 1.7 behaviour.
|
|
+ */
|
|
+ return true;
|
|
+ // Spigot End
|
|
}
|
|
|
|
public ChunkCoordIntPair j() {
|
|
--
|
|
2.1.0
|
|
|