2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-11-03 03:22:15 +01:00
|
|
|
index 07941c987a0c644e896f49ce217c1c625dc25014..c863fd94ee77b81aec84223588e20eed974515d6 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
|
2020-09-11 00:02:39 +02:00
|
|
|
@@ -76,6 +76,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
|
2020-08-25 04:22:08 +02:00
|
|
|
index 8862bbd73b627e37709d46e6aeeee70c89cbd821..4bbcd00950405a4bf3ce391b557049a3b1d4aee8 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
|
2020-06-25 16:09:55 +02:00
|
|
|
@@ -1093,6 +1093,7 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
|
|
|
} else {
|
|
|
|
PlayerChunkMap.EntityTracker playerchunkmap_entitytracker = new PlayerChunkMap.EntityTracker(entity, i, j, entitytypes.isDeltaTracking());
|
2019-05-08 03:13:24 +02:00
|
|
|
|
2020-06-25 16:09:55 +02:00
|
|
|
+ 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) {
|
|
|
|
@@ -1134,7 +1135,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
|
2020-11-26 00:45:25 +01:00
|
|
|
index 54d7d0da6ee998319db2454372ca283a9d571cdb..fa095bb55c09a3b5f8ab70bcce5a03c7eb93dcfa 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
|
2020-06-25 16:09:55 +02:00
|
|
|
@@ -68,6 +68,7 @@ public abstract class World implements GeneratorAccess, AutoCloseable {
|
2019-04-30 03:20:24 +02:00
|
|
|
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
|
2020-11-18 04:45:18 +01:00
|
|
|
index 6fc0ccc029fc9d1f11f4325792977a67fa89a6c9..47c49389d5f025003a0a9876cab5eb67cabec145 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
|
2020-11-03 03:22:15 +01:00
|
|
|
@@ -88,6 +88,9 @@ public class WorldServer extends World implements GeneratorAccessSeed {
|
2020-06-26 08:29:44 +02:00
|
|
|
public final Convertable.ConversionSession convertable;
|
2020-06-25 16:09:55 +02:00
|
|
|
public final UUID uuid;
|
2019-04-30 03:20:24 +02:00
|
|
|
boolean hasPhysicsEvent = true; // Paper
|
|
|
|
+ private static Throwable getAddToWorldStackTrace(Entity entity) {
|
|
|
|
+ return new Throwable(entity + " Added to world at " + new java.util.Date());
|
|
|
|
+ }
|
|
|
|
|
2020-06-26 08:29:44 +02:00
|
|
|
@Override public Chunk getChunkIfLoaded(int x, int z) { // Paper - this was added in world too but keeping here for NMS ABI
|
2020-06-25 16:09:55 +02:00
|
|
|
return this.chunkProvider.getChunkAt(x, z, false);
|
2020-11-18 04:45:18 +01:00
|
|
|
@@ -927,8 +930,28 @@ public class WorldServer extends World implements GeneratorAccessSeed {
|
2019-08-15 04:37:07 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
private boolean addEntity0(Entity entity, CreatureSpawnEvent.SpawnReason spawnReason) {
|
2019-07-23 21:17:32 +02:00
|
|
|
org.spigotmc.AsyncCatcher.catchOp("entity add"); // Spigot
|
2019-08-15 04:37:07 +02:00
|
|
|
- if (entity.valid) { MinecraftServer.LOGGER.error("Attempted Double World add on " + entity, new Throwable()); return true; } // Paper
|
|
|
|
+ // Paper start
|
|
|
|
+ if (entity.valid) {
|
|
|
|
+ MinecraftServer.LOGGER.error("Attempted Double World add on " + entity, new Throwable());
|
|
|
|
+
|
|
|
|
+ if (DEBUG_ENTITIES) {
|
|
|
|
+ Throwable thr = entity.addedToWorldStack;
|
|
|
|
+ if (thr == null) {
|
|
|
|
+ MinecraftServer.LOGGER.error("Double add entity has no add stacktrace");
|
|
|
|
+ } else {
|
|
|
|
+ MinecraftServer.LOGGER.error("Double add stacktrace: ", thr);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2019-04-30 03:20:24 +02:00
|
|
|
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)) {
|
2020-11-18 04:45:18 +01:00
|
|
|
@@ -1126,7 +1149,24 @@ public class WorldServer extends World implements GeneratorAccessSeed {
|
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);
|
2019-08-26 16:25:58 +02:00
|
|
|
// CraftBukkit start - SPIGOT-5278
|
|
|
|
if (entity instanceof EntityDrowned) {
|