2020-04-13 04:55:43 +02:00
|
|
|
From 2a83e08228511b66dd7351982268256bdc40ef46 Mon Sep 17 00:00:00 2001
|
2020-04-02 07:45:33 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Thu, 2 Apr 2020 01:42:39 -0400
|
|
|
|
Subject: [PATCH] Prevent Double PlayerChunkMap adds crashing server
|
|
|
|
|
|
|
|
Suspected case would be around the technique used in .stopRiding
|
|
|
|
Stack will identify any causer of this and warn instead of crashing.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerChunkMap.java b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2020-04-13 00:29:52 +02:00
|
|
|
index 0186ab9e4..e1e4ea793 100644
|
2020-04-02 07:45:33 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
|
|
|
@@ -1484,6 +1484,14 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
|
|
|
|
|
|
|
protected void addEntity(Entity entity) {
|
|
|
|
org.spigotmc.AsyncCatcher.catchOp("entity track"); // Spigot
|
|
|
|
+ // Paper start - ignore and warn about illegal addEntity calls instead of crashing server
|
|
|
|
+ if (!entity.valid || entity.world != this.world || this.trackedEntities.containsKey(entity.getId())) {
|
|
|
|
+ new Throwable("[ERROR] Illegal PlayerChunkMap::addEntity for world " + this.world.getWorld().getName()
|
|
|
|
+ + ": " + entity + (this.trackedEntities.containsKey(entity.getId()) ? " ALREADY CONTAINED (This would have crashed your server)" : ""))
|
|
|
|
+ .printStackTrace();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
if (!(entity instanceof EntityComplexPart)) {
|
|
|
|
if (!(entity instanceof EntityLightning)) {
|
|
|
|
EntityTypes<?> entitytypes = entity.getEntityType();
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
2020-04-13 04:55:43 +02:00
|
|
|
index 22e8eca96..1f97e3f23 100644
|
2020-04-02 07:45:33 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
2020-04-13 04:55:43 +02:00
|
|
|
@@ -1464,7 +1464,7 @@ public class WorldServer extends World {
|
2020-04-02 07:45:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- this.getChunkProvider().addEntity(entity);
|
|
|
|
+ // this.getChunkProvider().addEntity(entity); // Paper - moved down below valid=true
|
|
|
|
// CraftBukkit start - SPIGOT-5278
|
|
|
|
if (entity instanceof EntityDrowned) {
|
|
|
|
this.navigators.add(((EntityDrowned) entity).navigationWater);
|
2020-04-13 04:55:43 +02:00
|
|
|
@@ -1475,6 +1475,7 @@ public class WorldServer extends World {
|
2020-04-02 07:45:33 +02:00
|
|
|
this.navigators.add(((EntityInsentient) entity).getNavigation());
|
|
|
|
}
|
|
|
|
entity.valid = true; // CraftBukkit
|
|
|
|
+ this.getChunkProvider().addEntity(entity); // Paper - from above to be below valid=true
|
|
|
|
// Paper start - Set origin location when the entity is being added to the world
|
|
|
|
if (entity.origin == null) {
|
|
|
|
entity.origin = entity.getBukkitEntity().getLocation();
|
|
|
|
--
|
|
|
|
2.25.1
|
|
|
|
|