2020-05-06 09:48:49 +00:00
|
|
|
From 0000000000000000000000000000000000000000 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-05-06 09:48:49 +00:00
|
|
|
index 87d68a3e2161798b7496542093f09b2b739ad45b..6a40dddf467d741300b86075577f9af4840b5f06 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-05-06 07:44:47 +00:00
|
|
|
@@ -512,6 +512,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-05-06 07:44:47 +00:00
|
|
|
@@ -539,6 +540,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
|
|
|
}
|