2020-01-28 00:16:53 +00:00
|
|
|
From f2538725efa773c32f5c14be02a9c19ef3f931f3 Mon Sep 17 00:00:00 2001
|
2019-04-30 22:51:03 +00:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 23 Jul 2018 22:18:31 -0400
|
|
|
|
Subject: [PATCH] Mark chunk dirty anytime entities change to guarantee it
|
|
|
|
saves
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
|
2020-01-28 00:16:53 +00:00
|
|
|
index 8fdae388e3..28e5105ffe 100644
|
2019-04-30 22:51:03 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
2020-01-28 00:16:53 +00:00
|
|
|
@@ -416,6 +416,7 @@ public class Chunk implements IChunkAccess {
|
2019-04-30 22:51:03 +00:00
|
|
|
entity.chunkZ = this.loc.z;
|
2020-01-28 00:16:53 +00:00
|
|
|
this.entities.add(entity); // Paper - per chunk entity list
|
2019-04-30 22:51:03 +00:00
|
|
|
this.entitySlices[k].add(entity);
|
|
|
|
+ this.markDirty(); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-01-28 00:16:53 +00:00
|
|
|
@@ -442,6 +443,7 @@ public class Chunk implements IChunkAccess {
|
2019-04-30 22:51:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
entityCounts.decrement(entity.getMinecraftKeyString());
|
|
|
|
+ this.markDirty(); // Paper
|
|
|
|
// Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2020-01-22 02:02:07 +00:00
|
|
|
2.25.0.windows.1
|
2019-04-30 22:51:03 +00:00
|
|
|
|