mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-08-05 16:48:51 +00:00
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
From 16f40ed10458c25decc5da89c6f1925cbf1cde87 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 f751fafa9..4223b219a 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;
|
|
@@ -988,6 +988,7 @@ public abstract class World implements GeneratorAccess, IIBlockAccess, AutoClose
|
|
this.everyoneSleeping();
|
|
}
|
|
|
|
+ if (!guardEntityList) { // Spigot - It will get removed after the tick if we are ticking
|
|
int i = entity.ae;
|
|
int j = entity.ag;
|
|
|
|
@@ -1004,6 +1005,7 @@ public abstract class World implements GeneratorAccess, IIBlockAccess, AutoClose
|
|
this.entityList.remove(index);
|
|
}
|
|
// CraftBukkit end
|
|
+ } // Spigot
|
|
this.c(entity);
|
|
}
|
|
|
|
--
|
|
2.17.1
|
|
|