2018-08-27 17:07:22 +02:00
|
|
|
From f73216e0e600cedf96b49f3fc04cbb5e43a2f412 Mon Sep 17 00:00:00 2001
|
2018-07-24 04:54:52 +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
|
2018-08-27 17:07:22 +02:00
|
|
|
index 3bddc5f9b..33ce24479 100644
|
2018-07-24 04:54:52 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
2018-08-27 17:07:22 +02:00
|
|
|
@@ -718,6 +718,7 @@ public class Chunk implements IChunkAccess {
|
2018-07-24 05:20:41 +02:00
|
|
|
entity.ag = this.locZ;
|
2018-07-24 04:54:52 +02:00
|
|
|
this.entitySlices[k].add(entity);
|
|
|
|
// Paper start
|
|
|
|
+ this.markDirty();
|
|
|
|
if (entity instanceof EntityItem) {
|
2018-07-24 05:20:41 +02:00
|
|
|
itemCounts[k]++;
|
|
|
|
} else if (entity instanceof IInventory) {
|
2018-08-27 17:07:22 +02:00
|
|
|
@@ -749,6 +750,7 @@ public class Chunk implements IChunkAccess {
|
2018-07-24 05:20:41 +02:00
|
|
|
if (!this.entitySlices[i].remove(entity)) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-24 04:54:52 +02:00
|
|
|
+ this.markDirty();
|
|
|
|
if (entity instanceof EntityItem) {
|
2018-07-24 05:20:41 +02:00
|
|
|
itemCounts[i]--;
|
|
|
|
} else if (entity instanceof IInventory) {
|
2018-07-24 04:54:52 +02:00
|
|
|
--
|
|
|
|
2.18.0
|
|
|
|
|