2020-04-02 23:07:06 +02:00
|
|
|
From 01bab6e4af8ccaf971cd4ea90a6675b967d62bc8 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
|
2020-04-02 23:07:06 +02:00
|
|
|
index 3af311c6eb..68cde33565 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
|
2020-01-28 01:16:53 +01:00
|
|
|
@@ -416,6 +416,7 @@ public class Chunk implements IChunkAccess {
|
2019-05-01 00:51:03 +02:00
|
|
|
entity.chunkZ = this.loc.z;
|
2020-01-28 01:16:53 +01:00
|
|
|
this.entities.add(entity); // Paper - per chunk entity list
|
2019-05-01 00:51:03 +02:00
|
|
|
this.entitySlices[k].add(entity);
|
|
|
|
+ this.markDirty(); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-01-31 17:09:56 +01:00
|
|
|
@@ -443,6 +444,7 @@ public class Chunk implements IChunkAccess {
|
2019-05-01 00:51:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
entityCounts.decrement(entity.getMinecraftKeyString());
|
|
|
|
+ this.markDirty(); // Paper
|
|
|
|
// Paper end
|
2020-01-31 17:09:56 +01:00
|
|
|
this.entities.remove(entity); // Paper
|
2019-05-01 00:51:03 +02:00
|
|
|
}
|
|
|
|
--
|
2020-03-15 21:03:36 +01:00
|
|
|
2.25.1
|
2019-05-01 00:51:03 +02:00
|
|
|
|