2019-02-03 16:34:04 +01:00
|
|
|
From 37c4fc9303c9da3c1a83e5e8603ff99fd3a19951 Mon Sep 17 00:00:00 2001
|
2018-07-15 03:53:17 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 13 Apr 2016 00:25:28 -0400
|
|
|
|
Subject: [PATCH] Remove unused World Tile Entity List
|
|
|
|
|
|
|
|
Massive hit to performance and it is completely unnecessary.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-02-03 16:34:04 +01:00
|
|
|
index af6abc2df..d8ef300f7 100644
|
2018-07-15 03:53:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -71,7 +71,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-15 03:53:17 +02:00
|
|
|
};
|
|
|
|
// Spigot end
|
2018-08-26 20:11:49 +02:00
|
|
|
protected final Set<Entity> g = com.google.common.collect.Sets.newHashSet(); // Paper
|
2018-07-15 03:53:17 +02:00
|
|
|
- public final List<TileEntity> tileEntityList = Lists.newArrayList();
|
|
|
|
+ //public final List<TileEntity> tileEntityList = Lists.newArrayList(); // Paper - remove unused list
|
|
|
|
public final List<TileEntity> tileEntityListTick = Lists.newArrayList();
|
|
|
|
private final List<TileEntity> c = Lists.newArrayList();
|
2018-08-26 20:11:49 +02:00
|
|
|
private final Set<TileEntity> tileEntityListUnload = com.google.common.collect.Sets.newHashSet(); // Paper
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1268,7 +1268,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-15 03:53:17 +02:00
|
|
|
timings.tileEntityTick.startTiming(); // Spigot
|
|
|
|
if (!this.tileEntityListUnload.isEmpty()) {
|
|
|
|
this.tileEntityListTick.removeAll(this.tileEntityListUnload);
|
|
|
|
- this.tileEntityList.removeAll(this.tileEntityListUnload);
|
|
|
|
+ //this.tileEntityList.removeAll(this.tileEntityListUnload); // Paper - remove unused list
|
|
|
|
this.tileEntityListUnload.clear();
|
|
|
|
}
|
|
|
|
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1321,7 +1321,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-15 03:53:17 +02:00
|
|
|
if (tileentity.x()) {
|
|
|
|
tilesThisCycle--;
|
|
|
|
this.tileEntityListTick.remove(tileTickPosition--);
|
|
|
|
- this.tileEntityList.remove(tileentity);
|
|
|
|
+ //this.tileEntityList.remove(tileentity); // Paper - remove unused list
|
|
|
|
if (this.isLoaded(tileentity.getPosition())) {
|
|
|
|
this.getChunkAtWorldCoords(tileentity.getPosition()).d(tileentity.getPosition());
|
|
|
|
}
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1351,7 +1351,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-15 03:53:17 +02:00
|
|
|
this.notify(tileentity1.getPosition(), iblockdata, iblockdata, 3);
|
|
|
|
// CraftBukkit start
|
|
|
|
// From above, don't screw this up - SPIGOT-1746
|
|
|
|
- if (!this.tileEntityList.contains(tileentity1)) {
|
|
|
|
+ if (true) { // Paper - remove unused list
|
|
|
|
this.a(tileentity1);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1371,9 +1371,9 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-15 03:53:17 +02:00
|
|
|
protected void p_() {}
|
|
|
|
|
|
|
|
public boolean a(TileEntity tileentity) {
|
|
|
|
- boolean flag = this.tileEntityList.add(tileentity);
|
|
|
|
+ boolean flag = true; // Paper - remove unused list
|
|
|
|
|
|
|
|
- if (flag && tileentity instanceof ITickable) {
|
|
|
|
+ if (flag && tileentity instanceof ITickable && !this.tileEntityListTick.contains(tileentity)) { // Paper
|
|
|
|
this.tileEntityListTick.add(tileentity);
|
|
|
|
}
|
|
|
|
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1854,7 +1854,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-15 03:53:17 +02:00
|
|
|
} else {
|
|
|
|
if (tileentity != null) {
|
|
|
|
this.c.remove(tileentity);
|
|
|
|
- this.tileEntityList.remove(tileentity);
|
|
|
|
+ //this.tileEntityList.remove(tileentity); // Paper - remove unused list
|
|
|
|
this.tileEntityListTick.remove(tileentity);
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2019-01-01 04:15:55 +01:00
|
|
|
2.20.1
|
2018-07-15 03:53:17 +02:00
|
|
|
|