2018-09-15 18:10:26 +02:00
|
|
|
From 21e2b383c7c451aab9678a4611b4e8b675da0b0a Mon Sep 17 00:00:00 2001
|
2018-07-28 18:26:36 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 28 Jul 2018 12:18:27 -0400
|
|
|
|
Subject: [PATCH] Ignore Dead Entities in entityList iteration
|
|
|
|
|
|
|
|
A spigot change delays removal of entities from the entity list.
|
|
|
|
This causes a change in behavior from Vanilla where getEntities type
|
|
|
|
methods will return dead entities that they shouldn't otherwise be doing.
|
|
|
|
|
|
|
|
This will ensure that dead entities are skipped from iteration since
|
|
|
|
they shouldn't of been in the list in the first place.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperCommand.java b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
2018-08-26 20:11:49 +02:00
|
|
|
index 56700fc596..9b9c8361e9 100644
|
2018-07-28 18:26:36 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
2018-07-29 19:12:39 +02:00
|
|
|
@@ -172,6 +172,7 @@ public class PaperCommand extends Command {
|
2018-07-28 18:26:36 +02:00
|
|
|
List<Entity> entities = world.entityList;
|
|
|
|
entities.forEach(e -> {
|
2018-07-29 19:12:39 +02:00
|
|
|
MinecraftKey key = e.getMinecraftKey();
|
2018-07-28 18:26:36 +02:00
|
|
|
+ if (e.shouldBeRemoved) return; // Paper
|
|
|
|
|
|
|
|
MutablePair<Integer, Map<ChunkCoordIntPair, Integer>> info = list.computeIfAbsent(key, k -> MutablePair.of(0, Maps.newHashMap()));
|
|
|
|
ChunkCoordIntPair chunk = new ChunkCoordIntPair(e.getChunkX(), e.getChunkZ());
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2018-09-15 18:10:26 +02:00
|
|
|
index 8951ac8095..127a7c9b72 100644
|
2018-07-28 18:26:36 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -123,6 +123,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2018-07-29 19:12:39 +02:00
|
|
|
protected boolean F;
|
|
|
|
private boolean az;
|
2018-07-28 18:26:36 +02:00
|
|
|
public boolean dead;
|
|
|
|
+ public boolean shouldBeRemoved; // Paper
|
|
|
|
public float width;
|
|
|
|
public float length;
|
2018-07-29 19:12:39 +02:00
|
|
|
public float J;
|
2018-07-28 18:26:36 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2018-09-15 18:10:26 +02:00
|
|
|
index f21c7f8d90..79f7a678a7 100644
|
2018-07-28 18:26:36 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2018-09-15 18:10:26 +02:00
|
|
|
@@ -1105,6 +1105,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-31 23:39:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
entity.valid = true; // CraftBukkit
|
2018-07-31 23:41:33 +02:00
|
|
|
+ entity.shouldBeRemoved = false; // Paper - shouldn't be removed after being re-added
|
2018-07-31 23:39:15 +02:00
|
|
|
new com.destroystokyo.paper.event.entity.EntityAddToWorldEvent(entity.getBukkitEntity()).callEvent(); // Paper - fire while valid
|
|
|
|
}
|
|
|
|
|
2018-09-15 18:10:26 +02:00
|
|
|
@@ -1173,6 +1174,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-29 19:12:39 +02:00
|
|
|
if (entity.inChunk && this.isChunkLoaded(i, j, true)) {
|
2018-07-28 18:26:36 +02:00
|
|
|
this.getChunkAt(i, j).b(entity);
|
|
|
|
}
|
|
|
|
+ entity.shouldBeRemoved = true; // Paper
|
|
|
|
|
|
|
|
if (!guardEntityList) { // Spigot - It will get removed after the tick if we are ticking // Paper - always remove from current chunk above
|
|
|
|
// CraftBukkit start - Decrement loop variable field if we've already ticked this entity
|
2018-09-15 18:10:26 +02:00
|
|
|
@@ -2383,6 +2385,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-28 18:26:36 +02:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
Entity entity = (Entity) iterator.next();
|
|
|
|
+ if (entity.shouldBeRemoved) continue; // Paper
|
|
|
|
|
2018-07-29 19:12:39 +02:00
|
|
|
if (oclass.isAssignableFrom(entity.getClass()) && predicate.test((T) entity)) {
|
2018-07-28 18:26:36 +02:00
|
|
|
arraylist.add(entity);
|
2018-09-15 18:10:26 +02:00
|
|
|
@@ -2469,6 +2472,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-07-28 18:26:36 +02:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
Entity entity = (Entity) iterator.next();
|
|
|
|
+ if (entity.shouldBeRemoved) continue; // Paper
|
2018-09-15 18:10:26 +02:00
|
|
|
|
|
|
|
if (!(entity instanceof EntityInsentient) || !((EntityInsentient) entity).isPersistent()) {
|
|
|
|
if (oclass.isAssignableFrom(entity.getClass())) {
|
2018-07-28 18:26:36 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
2018-08-26 20:11:49 +02:00
|
|
|
index af977b171a..80fd49b6e1 100644
|
2018-07-28 18:26:36 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -653,6 +653,7 @@ public class CraftWorld implements World {
|
2018-07-28 18:26:36 +02:00
|
|
|
for (Object o : world.entityList) {
|
|
|
|
if (o instanceof net.minecraft.server.Entity) {
|
|
|
|
net.minecraft.server.Entity mcEnt = (net.minecraft.server.Entity) o;
|
|
|
|
+ if (mcEnt.shouldBeRemoved) continue; // Paper
|
|
|
|
Entity bukkitEntity = mcEnt.getBukkitEntity();
|
|
|
|
|
|
|
|
// Assuming that bukkitEntity isn't null
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -671,6 +672,7 @@ public class CraftWorld implements World {
|
2018-07-28 18:26:36 +02:00
|
|
|
for (Object o : world.entityList) {
|
|
|
|
if (o instanceof net.minecraft.server.Entity) {
|
|
|
|
net.minecraft.server.Entity mcEnt = (net.minecraft.server.Entity) o;
|
|
|
|
+ if (mcEnt.shouldBeRemoved) continue; // Paper
|
|
|
|
Entity bukkitEntity = mcEnt.getBukkitEntity();
|
|
|
|
|
|
|
|
// Assuming that bukkitEntity isn't null
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -695,6 +697,7 @@ public class CraftWorld implements World {
|
2018-07-28 18:26:36 +02:00
|
|
|
|
|
|
|
for (Object entity: world.entityList) {
|
|
|
|
if (entity instanceof net.minecraft.server.Entity) {
|
|
|
|
+ if (((net.minecraft.server.Entity) entity).shouldBeRemoved) continue; // Paper
|
|
|
|
Entity bukkitEntity = ((net.minecraft.server.Entity) entity).getBukkitEntity();
|
|
|
|
|
|
|
|
if (bukkitEntity == null) {
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -717,6 +720,7 @@ public class CraftWorld implements World {
|
2018-07-28 18:26:36 +02:00
|
|
|
|
|
|
|
for (Object entity: world.entityList) {
|
|
|
|
if (entity instanceof net.minecraft.server.Entity) {
|
|
|
|
+ if (((net.minecraft.server.Entity) entity).shouldBeRemoved) continue; // Paper
|
|
|
|
Entity bukkitEntity = ((net.minecraft.server.Entity) entity).getBukkitEntity();
|
|
|
|
|
|
|
|
if (bukkitEntity == null) {
|
|
|
|
--
|
2018-09-15 18:10:26 +02:00
|
|
|
2.19.0
|
2018-07-28 18:26:36 +02:00
|
|
|
|