Paper/Spigot-Server-Patches/0266-Prevent-Saving-Bad-entities-to-chunks.patch

66 lines
2.6 KiB
Diff
Raw Normal View History

2019-07-20 06:01:24 +02:00
From 91043567437b4d6e6a453fd63b75599c3140146f 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
2019-07-20 06:01:24 +02:00
index 03be77299b..e778c2e857 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
@@ -319,6 +319,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;
@@ -330,13 +331,29 @@ public class ChunkRegionLoader {
2019-05-14 04:20:58 +02:00
while (iterator1.hasNext()) {
Entity entity = (Entity) iterator1.next();
2019-05-28 01:01:45 +02:00
NBTTagCompound nbttagcompound3 = new NBTTagCompound();
-
2019-05-01 00:51:03 +02:00
+ // Paper start
+ if ((int)Math.floor(entity.locX) >> 4 != chunk.getPos().x || (int)Math.floor(entity.locZ) >> 4 != chunk.getPos().z) {
+ LogManager.getLogger().warn(entity + " is not in this chunk, skipping save. This a bug fix to a vanilla bug. Do not report this to PaperMC please.");
+ toUpdate.add(entity);
+ continue;
+ }
+ if (entity.dead) {
+ continue;
+ }
+ // Paper end
2019-05-28 01:01:45 +02:00
if (entity.d(nbttagcompound3)) {
2019-05-14 04:20:58 +02:00
chunk.d(true);
2019-05-28 01:01:45 +02:00
nbttaglist2.add(nbttagcompound3);
2019-05-01 00:51:03 +02:00
}
}
}
+
+ // Paper start - move entities to the correct chunk
+ for (Entity entity : toUpdate) {
2019-05-14 04:20:58 +02:00
+ worldserver.entityJoinedWorld(entity);
2019-05-01 00:51:03 +02:00
+ }
+ // Paper end
+
} else {
ProtoChunk protochunk = (ProtoChunk) ichunkaccess;
--
2.22.0
2019-05-01 00:51:03 +02:00