2020-04-13 07:34:18 +02:00
|
|
|
From 8aed5dee1485d23a7886293ae6035bdbcba93ad2 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-13 07:34:18 +02:00
|
|
|
index bb58fb796..54d48ef5e 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-04-13 07:34:18 +02:00
|
|
|
@@ -498,6 +498,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-04-13 07:34:18 +02:00
|
|
|
@@ -525,6 +526,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-04-13 07:34:18 +02:00
|
|
|
2.26.0
|
2019-05-01 00:51:03 +02:00
|
|
|
|