mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 12:02:36 +01:00
11 lines
639 B
Diff
11 lines
639 B
Diff
--- a/net/minecraft/gametest/framework/StructureUtils.java
|
|
+++ b/net/minecraft/gametest/framework/StructureUtils.java
|
|
@@ -187,7 +_,7 @@
|
|
level.clearBlockEvents(boundingBox1);
|
|
AABB aabb = AABB.of(boundingBox1);
|
|
List<Entity> entitiesOfClass = level.getEntitiesOfClass(Entity.class, aabb, entity -> !(entity instanceof Player));
|
|
- entitiesOfClass.forEach(Entity::discard);
|
|
+ entitiesOfClass.forEach(entity -> entity.discard(org.bukkit.event.entity.EntityRemoveEvent.Cause.DISCARD)); // Paper
|
|
}
|
|
|
|
public static BlockPos getTransformedFarCorner(BlockPos pos, Vec3i offset, Rotation rotation) {
|