2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2021-01-10 00:09:09 +01:00
|
|
|
index 8dd560c8207f14123ab9c9820d8ce7333775db35..90b2a891c5bfa26ab1ff6738f58719a10d5cbed6 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
|
2021-01-10 00:09:09 +01:00
|
|
|
@@ -523,6 +523,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
|
2021-01-10 00:09:09 +01:00
|
|
|
@@ -550,6 +551,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
|
|
|
}
|