2020-04-21 22:06:30 +00:00
|
|
|
From 690c2443891b33e7072e3421dc7fd5e234c63cd2 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-04-21 22:06:30 +00:00
|
|
|
index bb58fb79..54d48ef5 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-04-13 05:34:18 +00:00
|
|
|
@@ -498,6 +498,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-04-13 05:34:18 +00:00
|
|
|
@@ -525,6 +526,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-31 16:09:56 +00:00
|
|
|
this.entities.remove(entity); // Paper
|
2019-04-30 22:51:03 +00:00
|
|
|
}
|
|
|
|
--
|
2020-04-21 22:06:30 +00:00
|
|
|
2.25.1.windows.1
|
2019-04-30 22:51:03 +00:00
|
|
|
|