2020-05-06 09:44:47 +02:00
|
|
|
From 996595a695e7097c24e2bd7a4b1f9594ecf1b2bf Mon Sep 17 00:00:00 2001
|
2019-05-01 00:51:03 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Thu, 26 Jul 2018 00:11:12 -0400
|
|
|
|
Subject: [PATCH] Prevent Saving Bad entities to chunks
|
|
|
|
|
|
|
|
See https://github.com/PaperMC/Paper/issues/1223
|
|
|
|
|
|
|
|
Minecraft is saving invalid entities to the chunk files.
|
|
|
|
|
|
|
|
Avoid saving bad data, and also make improvements to handle
|
|
|
|
loading these chunks. Any invalid entity will be instant killed,
|
|
|
|
so lets avoid adding it to the world...
|
|
|
|
|
|
|
|
This lets us be safer about the dupe UUID resolver too, as now
|
|
|
|
we can ignore instant killed entities and avoid risk of duplicating
|
|
|
|
an invalid entity.
|
|
|
|
|
|
|
|
This should reduce log occurrences of dupe uuid messages.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkRegionLoader.java b/src/main/java/net/minecraft/server/ChunkRegionLoader.java
|
2020-05-02 00:03:47 +02:00
|
|
|
index 13d99de2cd..f54572773c 100644
|
2019-05-01 00:51:03 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkRegionLoader.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkRegionLoader.java
|
2019-12-12 01:03:31 +01:00
|
|
|
@@ -300,6 +300,7 @@ public class ChunkRegionLoader {
|
2019-05-28 01:01:45 +02:00
|
|
|
nbttagcompound1.set("TileEntities", nbttaglist1);
|
2019-05-14 04:20:58 +02:00
|
|
|
NBTTagList nbttaglist2 = new NBTTagList();
|
2019-05-01 00:51:03 +02:00
|
|
|
|
|
|
|
+ java.util.List<Entity> toUpdate = new java.util.ArrayList<>(); // Paper
|
|
|
|
if (ichunkaccess.getChunkStatus().getType() == ChunkStatus.Type.LEVELCHUNK) {
|
|
|
|
Chunk chunk = (Chunk) ichunkaccess;
|
|
|
|
|
2020-04-12 22:50:50 +02:00
|
|
|
@@ -311,13 +312,28 @@ public class ChunkRegionLoader {
|
2019-05-14 04:20:58 +02:00
|
|
|
while (iterator1.hasNext()) {
|
|
|
|
Entity entity = (Entity) iterator1.next();
|
2019-12-12 01:03:31 +01:00
|
|
|
NBTTagCompound nbttagcompound4 = new NBTTagCompound();
|
2019-05-28 01:01:45 +02:00
|
|
|
-
|
2019-05-01 00:51:03 +02:00
|
|
|
+ // Paper start
|
2019-12-12 01:03:31 +01:00
|
|
|
+ if ((int) Math.floor(entity.locX()) >> 4 != chunk.getPos().x || (int) Math.floor(entity.locZ()) >> 4 != chunk.getPos().z) {
|
2019-05-01 00:51:03 +02:00
|
|
|
+ toUpdate.add(entity);
|
|
|
|
+ continue;
|
|
|
|
+ }
|
2020-04-12 22:50:50 +02:00
|
|
|
+ if (entity.dead || hasPlayerPassenger(entity)) {
|
2019-05-01 00:51:03 +02:00
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2019-12-12 01:03:31 +01:00
|
|
|
if (entity.d(nbttagcompound4)) {
|
2019-05-14 04:20:58 +02:00
|
|
|
chunk.d(true);
|
2019-12-12 01:03:31 +01:00
|
|
|
nbttaglist2.add(nbttagcompound4);
|
2019-05-01 00:51:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start - move entities to the correct chunk
|
|
|
|
+ for (Entity entity : toUpdate) {
|
2020-04-12 22:50:50 +02:00
|
|
|
+ worldserver.chunkCheck(entity);
|
2019-05-01 00:51:03 +02:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
} else {
|
|
|
|
ProtoChunk protochunk = (ProtoChunk) ichunkaccess;
|
|
|
|
|
2020-04-12 22:50:50 +02:00
|
|
|
@@ -373,6 +389,19 @@ public class ChunkRegionLoader {
|
|
|
|
nbttagcompound1.set("Structures", a(chunkcoordintpair, ichunkaccess.h(), ichunkaccess.v()));
|
|
|
|
return nbttagcompound;
|
|
|
|
}
|
|
|
|
+ // Paper start - this is saved with the player
|
|
|
|
+ private static boolean hasPlayerPassenger(Entity entity) {
|
|
|
|
+ for (Entity passenger : entity.passengers) {
|
|
|
|
+ if (passenger instanceof EntityPlayer) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ if (hasPlayerPassenger(passenger)) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
public static ChunkStatus.Type a(@Nullable NBTTagCompound nbttagcompound) {
|
|
|
|
if (nbttagcompound != null) {
|
2020-04-13 00:29:52 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
|
2020-05-06 09:44:47 +02:00
|
|
|
index 02d9c754b1..d1424325d5 100644
|
2020-04-13 00:29:52 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/WorldServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/WorldServer.java
|
2020-05-06 09:44:47 +02:00
|
|
|
@@ -1084,6 +1084,7 @@ public class WorldServer extends World {
|
2020-04-13 00:29:52 +02:00
|
|
|
List[] aentityslice = chunk.getEntitySlices(); // Spigot
|
|
|
|
int i = aentityslice.length;
|
|
|
|
|
|
|
|
+ java.util.List<Entity> toMoveChunks = new java.util.ArrayList<>(); // Paper
|
|
|
|
for (int j = 0; j < i; ++j) {
|
|
|
|
List<Entity> entityslice = aentityslice[j]; // Spigot
|
|
|
|
Iterator iterator = entityslice.iterator();
|
2020-05-06 09:44:47 +02:00
|
|
|
@@ -1108,11 +1109,25 @@ public class WorldServer extends World {
|
2020-04-13 00:29:52 +02:00
|
|
|
throw (IllegalStateException) SystemUtils.c(new IllegalStateException("Removing entity while ticking!"));
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - move out entities that shouldn't be in this chunk before it unloads
|
|
|
|
+ if (!entity.dead && (int) Math.floor(entity.locX()) >> 4 != chunk.getPos().x || (int) Math.floor(entity.locZ()) >> 4 != chunk.getPos().z) {
|
|
|
|
+ toMoveChunks.add(entity);
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
this.entitiesById.remove(entity.getId());
|
|
|
|
this.unregisterEntity(entity);
|
|
|
|
+
|
|
|
|
+ if (entity.dead) iterator.remove(); // Paper - don't save dead entities during unload
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+ // Paper start - move out entities that shouldn't be in this chunk before it unloads
|
|
|
|
+ for (Entity entity : toMoveChunks) {
|
|
|
|
+ this.chunkCheck(entity);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-01 00:51:03 +02:00
|
|
|
--
|
2020-05-06 09:44:47 +02:00
|
|
|
2.26.0
|
2019-05-01 00:51:03 +02:00
|
|
|
|