Paper/Spigot-Server-Patches/0146-Do-not-load-chunks-for-pathfinding.patch

23 lines
818 B
Diff
Raw Normal View History

2016-06-11 21:58:54 +02:00
From 7d4fbadd98b52010c07a13459a2098cff7f64653 Mon Sep 17 00:00:00 2001
2016-05-05 01:53:33 +02:00
From: Aikar <aikar@aikar.co>
Date: Tue, 19 Jan 2016 00:13:19 -0500
Subject: [PATCH] Do not load chunks for pathfinding
diff --git a/src/main/java/net/minecraft/server/ChunkCache.java b/src/main/java/net/minecraft/server/ChunkCache.java
2016-05-12 04:07:46 +02:00
index a8fd64c..11c11cf 100644
2016-05-05 01:53:33 +02:00
--- a/src/main/java/net/minecraft/server/ChunkCache.java
+++ b/src/main/java/net/minecraft/server/ChunkCache.java
2016-05-12 04:07:46 +02:00
@@ -25,7 +25,7 @@ public class ChunkCache implements IBlockAccess {
2016-05-05 01:53:33 +02:00
for (l = this.a; l <= j; ++l) {
for (i1 = this.b; i1 <= k; ++i1) {
- this.c[l - this.a][i1 - this.b] = world.getChunkAt(l, i1);
+ this.c[l - this.a][i1 - this.b] = world.getChunkIfLoaded(l, i1); // Paper
}
}
--
2016-06-09 05:57:14 +02:00
2.8.3
2016-05-05 01:53:33 +02:00