mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
31 lines
998 B
Diff
31 lines
998 B
Diff
From c429811218fb9a028c5e08c3b31710cfb59bbb9b Mon Sep 17 00:00:00 2001
|
|
From: Thinkofdeath <thethinkofdeath@gmail.com>
|
|
Date: Tue, 14 Jan 2014 20:11:25 +0000
|
|
Subject: [PATCH] Fix ConcurrentModificationException while being idle kicked
|
|
in a vehicle
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
|
index 94481dc..6dc0f2e 100644
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
|
@@ -1093,6 +1093,7 @@ public abstract class World implements IBlockAccess {
|
|
this.everyoneSleeping();
|
|
}
|
|
|
|
+ if (!guardEntityList) { // Spigot - It will get removed after the tick if we are ticking
|
|
int i = entity.ae;
|
|
int j = entity.ag;
|
|
|
|
@@ -1109,6 +1110,7 @@ public abstract class World implements IBlockAccess {
|
|
this.entityList.remove(index);
|
|
}
|
|
// CraftBukkit end
|
|
+ } // Spigot
|
|
this.b(entity);
|
|
}
|
|
|
|
--
|
|
2.1.4
|
|
|