2019-07-24 05:20:14 +02:00
|
|
|
From e1dc1fc92f1d4e46ea41c274074713de49976a3c Mon Sep 17 00:00:00 2001
|
2019-04-30 03:20:24 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 21 Jul 2018 08:25:40 -0400
|
|
|
|
Subject: [PATCH] Add Debug Entities option to debug dupe uuid issues
|
|
|
|
|
|
|
|
Add -Ddebug.entities=true to your JVM flags to gain more information
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index 6ada923797..9241874139 100644
|
2019-04-30 03:20:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2019-05-06 04:58:04 +02:00
|
|
|
@@ -75,6 +75,8 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2019-04-30 03:20:24 +02:00
|
|
|
public com.destroystokyo.paper.loottable.PaperLootableInventoryData lootableData; // Paper
|
2019-06-03 05:26:25 +02:00
|
|
|
private CraftEntity bukkitEntity;
|
2019-04-30 03:20:24 +02:00
|
|
|
|
2019-05-08 03:13:24 +02:00
|
|
|
+ PlayerChunkMap.EntityTracker tracker; // Paper
|
2019-04-30 03:20:24 +02:00
|
|
|
+ Throwable addedToWorldStack; // Paper - entity debug
|
|
|
|
public CraftEntity getBukkitEntity() {
|
|
|
|
if (bukkitEntity == null) {
|
|
|
|
bukkitEntity = CraftEntity.getEntity(world.getServer(), this);
|
2019-05-08 03:13:24 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerChunkMap.java b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index e6c55d87b4..6379d2d84f 100644
|
2019-05-08 03:13:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -1014,6 +1014,7 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
2019-05-08 03:13:24 +02:00
|
|
|
} else {
|
|
|
|
PlayerChunkMap.EntityTracker playerchunkmap_entitytracker = new PlayerChunkMap.EntityTracker(entity, i, j, entitytypes.isDeltaTracking());
|
|
|
|
|
|
|
|
+ entity.tracker = playerchunkmap_entitytracker; // Paper - Fast access to tracker
|
|
|
|
this.trackedEntities.put(entity.getId(), playerchunkmap_entitytracker);
|
|
|
|
playerchunkmap_entitytracker.track(this.world.getPlayers());
|
|
|
|
if (entity instanceof EntityPlayer) {
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -1056,7 +1057,7 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
2019-05-08 03:13:24 +02:00
|
|
|
if (playerchunkmap_entitytracker1 != null) {
|
|
|
|
playerchunkmap_entitytracker1.a();
|
|
|
|
}
|
|
|
|
-
|
|
|
|
+ entity.tracker = null; // Paper - We're no longer tracked
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void g() {
|
2019-04-30 03:20:24 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index e780f7af40..627fec10a8 100644
|
2019-04-30 03:20:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
|
|
|
@@ -68,6 +68,7 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
|
|
|
public boolean pvpMode;
|
|
|
|
public boolean keepSpawnInMemory = true;
|
|
|
|
public org.bukkit.generator.ChunkGenerator generator;
|
|
|
|
+ public static final boolean DEBUG_ENTITIES = Boolean.getBoolean("debug.entities"); // Paper
|
|
|
|
|
|
|
|
public boolean captureBlockStates = false;
|
|
|
|
public boolean captureTreeGeneration = false;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
2019-07-24 05:20:14 +02:00
|
|
|
index d8c49d95e1..93d1cf0683 100644
|
2019-04-30 03:20:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -72,6 +72,9 @@ public class WorldServer extends World {
|
2019-05-14 04:20:58 +02:00
|
|
|
// CraftBukkit start
|
2019-04-30 03:20:24 +02:00
|
|
|
private int tickPosition;
|
|
|
|
boolean hasPhysicsEvent = true; // Paper
|
|
|
|
+ private static Throwable getAddToWorldStackTrace(Entity entity) {
|
|
|
|
+ return new Throwable(entity + " Added to world at " + new java.util.Date());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
// Add env and gen to constructor
|
|
|
|
public WorldServer(MinecraftServer minecraftserver, Executor executor, WorldNBTStorage worldnbtstorage, WorldData worlddata, DimensionManager dimensionmanager, GameProfilerFiller gameprofilerfiller, WorldLoadListener worldloadlistener, org.bukkit.World.Environment env, org.bukkit.generator.ChunkGenerator gen) {
|
2019-07-24 05:20:14 +02:00
|
|
|
@@ -942,6 +945,12 @@ public class WorldServer extends World {
|
2019-07-23 21:17:32 +02:00
|
|
|
org.spigotmc.AsyncCatcher.catchOp("entity add"); // Spigot
|
2019-04-30 03:20:24 +02:00
|
|
|
if (entity.valid) { MinecraftServer.LOGGER.error("Attempted Double World add on " + entity, new Throwable()); return true; } // Paper
|
|
|
|
if (entity.dead) {
|
|
|
|
+ // Paper start
|
|
|
|
+ if (DEBUG_ENTITIES) {
|
|
|
|
+ new Throwable("Tried to add entity " + entity + " but it was marked as removed already").printStackTrace(); // CraftBukkit
|
|
|
|
+ getAddToWorldStackTrace(entity).printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
// WorldServer.LOGGER.warn("Tried to add entity {} but it was marked as removed already", EntityTypes.getName(entity.getEntityType())); // CraftBukkit
|
|
|
|
return false;
|
|
|
|
} else if (this.isUUIDTaken(entity)) {
|
2019-07-24 05:20:14 +02:00
|
|
|
@@ -1107,7 +1116,24 @@ public class WorldServer extends World {
|
2019-04-30 03:20:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- this.entitiesByUUID.put(entity.getUniqueID(), entity);
|
|
|
|
+ if (DEBUG_ENTITIES) {
|
|
|
|
+ entity.addedToWorldStack = getAddToWorldStackTrace(entity);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Entity old = this.entitiesByUUID.put(entity.getUniqueID(), entity);
|
|
|
|
+ if (old != null && old.getId() != entity.getId() && old.valid) {
|
|
|
|
+ Logger logger = LogManager.getLogger();
|
|
|
|
+ logger.error("Overwrote an existing entity " + old + " with " + entity);
|
|
|
|
+ if (DEBUG_ENTITIES) {
|
|
|
|
+ if (old.addedToWorldStack != null) {
|
|
|
|
+ old.addedToWorldStack.printStackTrace();
|
|
|
|
+ } else {
|
|
|
|
+ logger.error("Oddly, the old entity was not added to the world in the normal way. Plugins?");
|
|
|
|
+ }
|
|
|
|
+ entity.addedToWorldStack.printStackTrace();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
this.getChunkProvider().addEntity(entity);
|
|
|
|
if (entity instanceof EntityInsentient) {
|
2019-07-20 06:01:24 +02:00
|
|
|
this.H.add(((EntityInsentient) entity).getNavigation());
|
2019-04-30 03:20:24 +02:00
|
|
|
--
|
2019-06-25 03:47:58 +02:00
|
|
|
2.22.0
|
2019-04-30 03:20:24 +02:00
|
|
|
|