2015-03-08 12:04:41 +01:00
|
|
|
From cae0937ade50fb86203d217e6163cd57fa303626 Mon Sep 17 00:00:00 2001
|
2014-11-28 02:17:45 +01:00
|
|
|
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
|
2015-03-08 12:04:41 +01:00
|
|
|
index 0d97f71..e7af966 100644
|
2014-11-28 02:17:45 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2015-03-08 12:04:41 +01:00
|
|
|
@@ -1093,6 +1093,7 @@ public abstract class World implements IBlockAccess {
|
2014-11-28 02:17:45 +01:00
|
|
|
this.everyoneSleeping();
|
|
|
|
}
|
|
|
|
|
|
|
|
+ if (!guardEntityList) { // Spigot - It will get removed after the tick if we are ticking
|
|
|
|
int i = entity.ae;
|
|
|
|
int j = entity.ag;
|
|
|
|
|
2015-03-08 12:04:41 +01:00
|
|
|
@@ -1109,6 +1110,7 @@ public abstract class World implements IBlockAccess {
|
2014-11-28 02:17:45 +01:00
|
|
|
this.entityList.remove(index);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
+ } // Spigot
|
|
|
|
this.b(entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
|
|
|
2.1.0
|
|
|
|
|