spigot/CraftBukkit-Patches/0092-Guard-Entity-List.patch

80 lines
2.8 KiB
Diff
Raw Normal View History

2015-02-26 21:40:16 +11:00
From 4621df9d2cb409141bc86e08543b51623560ca39 Mon Sep 17 00:00:00 2001
2014-04-12 14:18:37 +10:00
From: md_5 <git@md-5.net>
Date: Mon, 10 Mar 2014 09:03:28 +1100
Subject: [PATCH] Guard Entity List
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
2015-01-05 14:32:01 +11:00
index 248f485..59bd847 100644
2014-04-12 14:18:37 +10:00
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
@@ -33,7 +33,32 @@ import org.bukkit.event.weather.ThunderChangeEvent;
2014-04-12 14:18:37 +10:00
public abstract class World implements IBlockAccess {
protected boolean e;
- public final List entityList = Lists.newArrayList();
2014-04-12 14:18:37 +10:00
+ // Spigot start - guard entity list from removals
+ public List entityList = new java.util.ArrayList()
2014-04-12 14:18:37 +10:00
+ {
+ @Override
+ public Object remove(int index)
+ {
+ guard();
+ return super.remove( index );
+ }
+
+ @Override
+ public boolean remove(Object o)
+ {
+ guard();
+ return super.remove( o );
+ }
+
+ private void guard()
+ {
+ if ( guardEntityList )
+ {
+ throw new java.util.ConcurrentModificationException();
+ }
+ }
+ };
+ // Spigot end
protected final List g = Lists.newArrayList();
public final List h = Lists.newArrayList();
public final List tileEntityList = Lists.newArrayList();
2014-11-29 20:44:07 +00:00
@@ -101,6 +126,7 @@ public abstract class World implements IBlockAccess {
private int tickPosition;
2014-04-12 14:18:37 +10:00
// Spigot start
+ private boolean guardEntityList;
protected final gnu.trove.map.hash.TLongShortHashMap chunkTickList;
2014-04-12 14:18:37 +10:00
protected float growthOdds = 100;
protected float modifiedOdds = 100;
2014-12-10 19:55:03 +00:00
@@ -1295,6 +1321,7 @@ public abstract class World implements IBlockAccess {
2014-04-12 14:18:37 +10:00
org.spigotmc.ActivationRange.activateEntities(this); // Spigot
timings.entityTick.startTiming(); // Spigot
+ guardEntityList = true; // Spigot
// CraftBukkit start - Use field for loop variable
for (this.tickPosition = 0; this.tickPosition < this.entityList.size(); ++this.tickPosition) {
entity = (Entity) this.entityList.get(this.tickPosition);
2014-12-10 19:55:03 +00:00
@@ -1331,12 +1358,15 @@ public abstract class World implements IBlockAccess {
2014-04-12 14:18:37 +10:00
this.getChunkAt(j, k).b(entity);
}
+ guardEntityList = false; // Spigot
this.entityList.remove(this.tickPosition--); // CraftBukkit - Use field for loop variable
+ guardEntityList = true; // Spigot
this.b(entity);
}
this.methodProfiler.b();
}
+ guardEntityList = false; // Spigot
timings.entityTick.stopTiming(); // Spigot
this.methodProfiler.c("blockEntities");
--
2.1.0
2014-04-12 14:18:37 +10:00