2017-09-18 13:04:01 +02:00
|
|
|
From cf26274e3d4eebb66781babe9364e228d1751371 Mon Sep 17 00:00:00 2001
|
2017-08-10 01:11:57 +02:00
|
|
|
From: mezz <tehgeek@gmail.com>
|
|
|
|
Date: Wed, 9 Aug 2017 17:51:22 -0500
|
|
|
|
Subject: [PATCH] Fix MC-117075: TE Unload Lag Spike
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkCoordIntPair.java b/src/main/java/net/minecraft/server/ChunkCoordIntPair.java
|
2017-09-18 13:04:01 +02:00
|
|
|
index 239440888..e8d1a1c60 100644
|
2017-08-10 01:11:57 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkCoordIntPair.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkCoordIntPair.java
|
|
|
|
@@ -15,6 +15,7 @@ public class ChunkCoordIntPair {
|
|
|
|
this.z = blockposition.getZ() >> 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public static long asLong(int x, int z) { return a(x, z); } // Paper - OBFHELPER
|
|
|
|
public static long a(int i, int j) {
|
|
|
|
return (long) i & 4294967295L | ((long) j & 4294967295L) << 32;
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2017-09-18 13:04:01 +02:00
|
|
|
index 30cf4a251..f690aaa10 100644
|
2017-08-10 01:11:57 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2017-09-18 13:04:01 +02:00
|
|
|
@@ -1574,7 +1574,11 @@ public abstract class World implements IBlockAccess {
|
|
|
|
this.methodProfiler.c("blockEntities");
|
2017-09-12 04:21:57 +02:00
|
|
|
timings.tileEntityTick.startTiming(); // Spigot
|
|
|
|
if (!this.tileEntityListUnload.isEmpty()) {
|
|
|
|
- this.tileEntityListTick.removeAll(this.tileEntityListUnload);
|
|
|
|
+ // Paper start - Use alternate implementation with faster contains
|
|
|
|
+ java.util.Set<TileEntity> toRemove = java.util.Collections.newSetFromMap(new java.util.IdentityHashMap<>());
|
|
|
|
+ toRemove.addAll(tileEntityListUnload);
|
|
|
|
+ this.tileEntityListTick.removeAll(toRemove);
|
|
|
|
+ // Paper end
|
|
|
|
//this.tileEntityList.removeAll(this.tileEntityListUnload); // Paper - remove unused list
|
2017-08-10 01:11:57 +02:00
|
|
|
this.tileEntityListUnload.clear();
|
|
|
|
}
|
|
|
|
--
|
2017-09-18 13:04:01 +02:00
|
|
|
2.14.1
|
2017-08-10 01:11:57 +02:00
|
|
|
|