mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
24 lines
1.0 KiB
Diff
24 lines
1.0 KiB
Diff
From 6d3f482a0e531d256ae01e19f155152fcf559782 Mon Sep 17 00:00:00 2001
|
|
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
|
|
index 815ca3b5..553d9724 100644
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
|
@@ -762,6 +762,7 @@ public abstract class World implements IBlockAccess {
|
|
if (blockposition.getY() >= 256) {
|
|
blockposition = new BlockPosition(blockposition.getX(), 255, blockposition.getZ());
|
|
}
|
|
+ if (!this.isLoaded(blockposition)) return 0; // Paper
|
|
|
|
Chunk chunk = this.getChunkAtWorldCoords(blockposition);
|
|
|
|
--
|
|
2.13.1.windows.2
|
|
|