2015-03-11 11:19:32 +01:00
|
|
|
From f7c679145cbad061ad38ddbae66acd237f283799 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-11 11:19:32 +01:00
|
|
|
index 8d6aa7a..3c4c0fe 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-11 11:19:32 +01:00
|
|
|
@@ -1090,6 +1090,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-11 11:19:32 +01:00
|
|
|
@@ -1106,6 +1107,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
|
|
|
|
|