geforkt von Mirrors/Paper
4d6f73449f
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing CraftBukkit Changes:17543ecf
SPIGOT-5035: Error Using Virtual Merchant GUI0fc6922b
SPIGOT-5028: Villager#setVillagerExperience() doesn't workbdbdbe44
SPIGOT-5024: Fox error - Unknown target reason
35 Zeilen
1.5 KiB
Diff
35 Zeilen
1.5 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
Date: Wed, 29 May 2019 04:01:22 +0100
|
|
Subject: [PATCH] ChunkMapDistance CME
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkMapDistance.java b/src/main/java/net/minecraft/server/ChunkMapDistance.java
|
|
index ba4b9fa59c..d3c2ad3c40 100644
|
|
--- a/src/main/java/net/minecraft/server/ChunkMapDistance.java
|
|
+++ b/src/main/java/net/minecraft/server/ChunkMapDistance.java
|
|
@@ -0,0 +0,0 @@ public abstract class ChunkMapDistance {
|
|
private int entitydistance;
|
|
private final ChunkMapDistance.b i = new ChunkMapDistance.b(8);
|
|
private final ChunkMapDistance.d j = new ChunkMapDistance.d(33);
|
|
- private final Set<PlayerChunk> k = Sets.newHashSet();
|
|
+ private Set<PlayerChunk> k = Sets.newHashSet(); // Paper - -final
|
|
private final PlayerChunk.c l;
|
|
private final Mailbox<ChunkTaskQueueSorter.a<Runnable>> m;
|
|
private final Mailbox<ChunkTaskQueueSorter.b> n;
|
|
@@ -0,0 +0,0 @@ public abstract class ChunkMapDistance {
|
|
;
|
|
}
|
|
|
|
- if (!this.k.isEmpty()) {
|
|
- this.k.forEach((playerchunk) -> {
|
|
+ // Paper start
|
|
+ Set<PlayerChunk> currentPending = this.k;
|
|
+ this.k = Sets.newHashSet();
|
|
+ if (!currentPending.isEmpty()) {
|
|
+ currentPending.forEach((playerchunk) -> {
|
|
+ // Paper end
|
|
playerchunk.a(playerchunkmap);
|
|
});
|
|
this.k.clear();
|
|
--
|