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

80 lines
3 KiB
Diff
Raw Normal View History

2018-07-22 12:00:00 +10:00
From e939bbe74f0757b7c829834e99b0fc9070dbda5f 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
2018-07-22 12:00:00 +10:00
index ce5fa30b2..f751fafa9 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
2018-07-15 10:00:00 +10:00
@@ -38,7 +38,32 @@ public abstract class World implements GeneratorAccess, IIBlockAccess, AutoClose
protected static final Logger e = LogManager.getLogger();
private static final EnumDirection[] a = EnumDirection.values();
private int b = 63;
2015-02-28 11:36:22 +00:00
- public final List<Entity> entityList = Lists.newArrayList();
2014-04-12 14:18:37 +10:00
+ // Spigot start - guard entity list from removals
2015-02-28 11:36:22 +00:00
+ public final List<Entity> entityList = new java.util.ArrayList<Entity>()
2014-04-12 14:18:37 +10:00
+ {
+ @Override
2015-02-28 11:36:22 +00:00
+ public Entity remove(int index)
2014-04-12 14:18:37 +10:00
+ {
+ 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
2018-07-15 10:00:00 +10:00
protected final List<Entity> g = Lists.newArrayList();
2015-02-28 11:36:22 +00:00
public final List<TileEntity> tileEntityList = Lists.newArrayList();
2016-03-01 08:33:06 +11:00
public final List<TileEntity> tileEntityListTick = Lists.newArrayList();
2018-07-15 10:00:00 +10:00
@@ -103,6 +128,7 @@ public abstract class World implements GeneratorAccess, IIBlockAccess, AutoClose
2016-03-01 08:33:06 +11:00
public final org.spigotmc.SpigotWorldConfig spigotConfig; // Spigot
2014-04-12 14:18:37 +10:00
2016-03-01 08:33:06 +11:00
public final SpigotTimings.WorldTimingsHandler timings; // Spigot
+ private boolean guardEntityList; // Spigot
public CraftWorld getWorld() {
return this.world;
2018-07-15 10:00:00 +10:00
@@ -1067,6 +1093,7 @@ public abstract class World implements GeneratorAccess, IIBlockAccess, AutoClose
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);
2018-07-15 10:00:00 +10:00
@@ -1105,12 +1132,15 @@ public abstract class World implements GeneratorAccess, IIBlockAccess, AutoClose
2016-03-01 08:33:06 +11:00
this.getChunkAt(j, l).b(entity);
2014-04-12 14:18:37 +10:00
}
+ guardEntityList = false; // Spigot
this.entityList.remove(this.tickPosition--); // CraftBukkit - Use field for loop variable
+ guardEntityList = true; // Spigot
2016-03-01 08:33:06 +11:00
this.c(entity);
2014-04-12 14:18:37 +10:00
}
2018-07-15 10:00:00 +10:00
this.methodProfiler.e();
2014-04-12 14:18:37 +10:00
}
+ guardEntityList = false; // Spigot
timings.entityTick.stopTiming(); // Spigot
this.methodProfiler.c("blockEntities");
--
2018-07-15 10:00:00 +10:00
2.17.1
2014-04-12 14:18:37 +10:00