2019-12-13 02:18:18 +01:00
|
|
|
From 5a4f65aa640f16cfe63ad3d4a6fad3d5a01e583e 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/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-12-13 02:18:18 +01:00
|
|
|
index ef5cec964..3cab54e77 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
|
2019-12-13 02:18:18 +01:00
|
|
|
@@ -666,7 +666,11 @@ public abstract class World implements GeneratorAccess, AutoCloseable {
|
2019-04-28 01:23:53 +02:00
|
|
|
gameprofilerfiller.enter("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();
|
|
|
|
}
|
|
|
|
--
|
2019-12-13 02:18:18 +01:00
|
|
|
2.24.0
|
2017-08-10 01:11:57 +02:00
|
|
|
|