2020-05-06 11:22:03 +02:00
|
|
|
From 170facae670205f822b89153dbe25d9c7eeb2c98 Mon Sep 17 00:00:00 2001
|
2020-04-18 22:02:37 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 18 Apr 2020 15:59:41 -0400
|
|
|
|
Subject: [PATCH] Don't crash if player is attempted to be removed from
|
|
|
|
untracked chunk.
|
|
|
|
|
|
|
|
I suspect it deals with teleporting as it uses players current x/y/z
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkMapDistance.java b/src/main/java/net/minecraft/server/ChunkMapDistance.java
|
2020-05-06 11:22:03 +02:00
|
|
|
index 0244768f76d..279c7a85fb5 100644
|
2020-04-18 22:02:37 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkMapDistance.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkMapDistance.java
|
|
|
|
@@ -226,6 +226,7 @@ public abstract class ChunkMapDistance {
|
|
|
|
public void b(SectionPosition sectionposition, EntityPlayer entityplayer) {
|
|
|
|
long i = sectionposition.u().pair();
|
|
|
|
ObjectSet<EntityPlayer> objectset = (ObjectSet) this.c.get(i);
|
|
|
|
+ if (objectset == null) return; // Paper - mitigate weird state mismatch that this chunk isn't tracked.
|
|
|
|
|
|
|
|
objectset.remove(entityplayer);
|
|
|
|
if (objectset.isEmpty()) {
|
|
|
|
--
|
2020-05-06 11:22:03 +02:00
|
|
|
2.26.2
|
2020-04-18 22:02:37 +02:00
|
|
|
|