2019-02-03 16:34:04 +01:00
|
|
|
From fe617230001f60f90d1511e6673e91fa51b54f00 Mon Sep 17 00:00:00 2001
|
2018-10-05 05:31:01 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Thu, 31 Mar 2016 19:17:58 -0400
|
|
|
|
Subject: [PATCH] Do not load chunks for light checks
|
|
|
|
|
|
|
|
Should only happen for blocks on the edge that uses neighbors light level
|
|
|
|
(certain blocks). In that case, there will be 3-4 other neighbors to get a light level from.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-02-03 16:34:04 +01:00
|
|
|
index 5b36e7590..f4b5e3ba4 100644
|
2018-10-05 05:31:01 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -663,6 +663,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-10-05 05:31:01 +02:00
|
|
|
if (blockposition.getY() >= 256) {
|
|
|
|
blockposition = new BlockPosition(blockposition.getX(), 255, blockposition.getZ());
|
|
|
|
}
|
|
|
|
+ if (!this.isLoaded(blockposition)) return 0; // Paper
|
|
|
|
|
|
|
|
return this.getChunkAtWorldCoords(blockposition).a(blockposition, i);
|
|
|
|
}
|
|
|
|
--
|
2019-01-01 04:15:55 +01:00
|
|
|
2.20.1
|
2018-10-05 05:31:01 +02:00
|
|
|
|