2019-08-21 01:02:51 +00:00
|
|
|
From 7e3412b5e8d6b3c6bad18965ec3b4f9159e70433 Mon Sep 17 00:00:00 2001
|
2019-06-22 20:17:40 +00:00
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
Date: Sat, 22 Jun 2019 04:20:47 -0700
|
|
|
|
Subject: [PATCH] Use ChunkStatus cache when saving protochunks
|
|
|
|
|
|
|
|
The cache should contain the chunk status when saving. If not it
|
|
|
|
will load it.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerChunkMap.java b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2019-08-21 01:02:51 +00:00
|
|
|
index bdadbd436..fbbd4d5dd 100644
|
2019-06-22 20:17:40 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2019-07-28 00:38:29 +00:00
|
|
|
@@ -768,8 +768,10 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
2019-06-22 20:17:40 +00:00
|
|
|
NBTTagCompound nbttagcompound;
|
|
|
|
|
|
|
|
if (chunkstatus.getType() != ChunkStatus.Type.LEVELCHUNK) {
|
|
|
|
- nbttagcompound = this.readChunkData(chunkcoordintpair);
|
|
|
|
- if (nbttagcompound != null && ChunkRegionLoader.a(nbttagcompound) == ChunkStatus.Type.LEVELCHUNK) {
|
|
|
|
+ // Paper start - Optimize save by using status cache
|
2019-07-08 06:52:08 +00:00
|
|
|
+ ChunkStatus statusOnDisk = this.getChunkStatusOnDisk(chunkcoordintpair);
|
2019-06-22 20:17:40 +00:00
|
|
|
+ if (statusOnDisk != null && statusOnDisk.getType() == ChunkStatus.Type.LEVELCHUNK) {
|
|
|
|
+ // Paper end
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2019-08-21 01:02:51 +00:00
|
|
|
2.23.0
|
2019-06-22 20:17:40 +00:00
|
|
|
|