2019-07-02 20:50:03 +02:00
|
|
|
From 4edf0cf5fcd69d7b5fc89c185144706f2de35667 Mon Sep 17 00:00:00 2001
|
2019-05-29 05:25:08 +02:00
|
|
|
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
|
2019-07-02 20:50:03 +02:00
|
|
|
index ed4e8d69ca..f72843119a 100644
|
2019-05-29 05:25:08 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkMapDistance.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkMapDistance.java
|
2019-07-02 20:50:03 +02:00
|
|
|
@@ -23,6 +23,7 @@ import it.unimi.dsi.fastutil.objects.ObjectSortedSet;
|
|
|
|
import java.util.Set;
|
|
|
|
import java.util.concurrent.CompletableFuture;
|
|
|
|
import java.util.concurrent.Executor;
|
|
|
|
+
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
@@ -36,7 +37,7 @@ public abstract class ChunkMapDistance {
|
2019-06-25 03:47:58 +02:00
|
|
|
private final ChunkMapDistance.a e = new ChunkMapDistance.a();
|
|
|
|
private final ChunkMapDistance.b f = new ChunkMapDistance.b(8);
|
|
|
|
private final ChunkMapDistance.c g = new ChunkMapDistance.c(33);
|
|
|
|
- private final Set<PlayerChunk> h = Sets.newHashSet();
|
2019-07-02 20:50:03 +02:00
|
|
|
+ private java.util.Queue<PlayerChunk> h = new java.util.LinkedList<>(); // Paper - -final
|
2019-06-25 03:47:58 +02:00
|
|
|
private final PlayerChunk.c i;
|
|
|
|
private final Mailbox<ChunkTaskQueueSorter.a<Runnable>> j;
|
|
|
|
private final Mailbox<ChunkTaskQueueSorter.b> k;
|
2019-07-02 20:50:03 +02:00
|
|
|
@@ -98,11 +99,12 @@ public abstract class ChunkMapDistance {
|
2019-05-29 05:25:08 +02:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
2019-07-02 20:50:03 +02:00
|
|
|
if (!this.h.isEmpty()) {
|
|
|
|
- this.h.forEach((playerchunk) -> {
|
|
|
|
- playerchunk.a(playerchunkmap);
|
|
|
|
- });
|
|
|
|
- this.h.clear();
|
|
|
|
+ while(!this.h.isEmpty()) {
|
|
|
|
+ this.h.remove().a(playerchunkmap);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
if (!this.l.isEmpty()) {
|
2019-05-29 05:25:08 +02:00
|
|
|
--
|
2019-06-25 03:47:58 +02:00
|
|
|
2.22.0
|
2019-05-29 05:25:08 +02:00
|
|
|
|