Paper/nms-patches/PathfinderAbstract.patch
Aikar f92e01ba5c MC-100382: Fix Pathfinding Memory Leak
https://bugs.mojang.com/browse/MC-100382

A reference to a ChunkCache is never cleaned up after doing a pathfind operation,
resulting in leaking chunks. The leaked chunks then hold references to other
entities that may also be leaking ChunkCache's, creating a cascading problem.
2016-03-31 19:47:11 -04:00

12 lines
402 B
Diff

--- a/net/minecraft/server/PathfinderAbstract.java
+++ b/net/minecraft/server/PathfinderAbstract.java
@@ -23,7 +23,7 @@
this.f = MathHelper.d(entityinsentient.width + 1.0F);
}
- public void a() {}
+ public void a() { this.a = (IBlockAccess) null; } // CraftBukkit - don't leak Chunk Cache
protected PathPoint a(int i, int j, int k) {
int l = PathPoint.b(i, j, k);