2019-12-12 01:03:31 +01:00
|
|
|
From ad87d83601ee698012d473208eb47ce44ddf42c3 Mon Sep 17 00:00:00 2001
|
2019-05-01 00:51:03 +02: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
|
2019-12-12 01:03:31 +01:00
|
|
|
index 1efddb533..6774c6480 100644
|
2019-05-01 00:51:03 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
2019-12-12 01:03:31 +01:00
|
|
|
@@ -410,6 +410,7 @@ public class Chunk implements IChunkAccess {
|
2019-05-01 00:51:03 +02:00
|
|
|
entity.chunkY = k;
|
|
|
|
entity.chunkZ = this.loc.z;
|
|
|
|
this.entitySlices[k].add(entity);
|
|
|
|
+ this.markDirty(); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-12-12 01:03:31 +01:00
|
|
|
@@ -436,6 +437,7 @@ public class Chunk implements IChunkAccess {
|
2019-05-01 00:51:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
entityCounts.decrement(entity.getMinecraftKeyString());
|
|
|
|
+ this.markDirty(); // Paper
|
|
|
|
// Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2019-12-12 01:03:31 +01:00
|
|
|
2.24.0
|
2019-05-01 00:51:03 +02:00
|
|
|
|