mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-09-18 21:33:01 +00:00
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
From ce08c7fa1aac32b2079a5d5f942a3e516b69f558 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 f68a3a167..450f167d9 100644
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
|
@@ -1,4 +1,4 @@
|
|
-package net.minecraft.server;
|
|
+ package net.minecraft.server;
|
|
|
|
import com.google.common.base.MoreObjects;
|
|
import com.google.common.collect.Lists;
|
|
@@ -1016,6 +1016,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
|
this.everyoneSleeping();
|
|
}
|
|
|
|
+ if (!guardEntityList) { // Spigot - It will get removed after the tick if we are ticking
|
|
int i = entity.ae;
|
|
int j = entity.ag;
|
|
|
|
@@ -1032,6 +1033,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
|
this.entityList.remove(index);
|
|
}
|
|
// CraftBukkit end
|
|
+ } // Spigot
|
|
this.c(entity);
|
|
}
|
|
|
|
--
|
|
2.17.1
|
|
|