2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sun, 22 Jan 2017 18:07:56 -0500
|
|
|
|
Subject: [PATCH] Cap Entity Collisions
|
|
|
|
|
|
|
|
Limit a single entity to colliding a max of configurable times per tick.
|
|
|
|
This will alleviate issues where living entities are hoarded in 1x1 pens
|
|
|
|
|
|
|
|
This is not tied to the maxEntityCramming rule. Cramming will still apply
|
|
|
|
just as it does in Vanilla, but entity pushing logic will be capped.
|
|
|
|
|
|
|
|
You can set this to 0 to disable collisions.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
2024-04-24 03:25:14 +02:00
|
|
|
index 10687787a5fd1a81ad5a625848db4649381eab67..9f906e51f236e84f6cee8eba4b7587edee7ce796 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
2024-04-24 03:25:14 +02:00
|
|
|
@@ -396,6 +396,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
2024-01-24 11:45:17 +01:00
|
|
|
public long activatedTick = Integer.MIN_VALUE;
|
2021-06-11 14:02:28 +02:00
|
|
|
public void inactiveTick() { }
|
|
|
|
// Spigot end
|
2024-01-22 19:01:10 +01:00
|
|
|
+ protected int numCollisions = 0; // Paper - Cap entity collisions
|
2024-01-24 11:45:17 +01:00
|
|
|
// Paper start - Entity origin API
|
2021-12-03 22:28:15 +01:00
|
|
|
@javax.annotation.Nullable
|
|
|
|
private org.bukkit.util.Vector origin;
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2024-04-28 03:00:01 +02:00
|
|
|
index c6e666f57c199b4408b32e076622ba05b42fcea9..134106c7c98c87e593157a794287973327d055fc 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2024-04-28 03:00:01 +02:00
|
|
|
@@ -3460,10 +3460,12 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
2023-09-21 22:35:39 +02:00
|
|
|
Iterator iterator1 = list.iterator();
|
2024-01-22 19:01:10 +01:00
|
|
|
+ this.numCollisions = Math.max(0, this.numCollisions - this.level().paperConfig().collisions.maxEntityCollisions); // Paper - Cap entity collisions
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2023-09-21 22:35:39 +02:00
|
|
|
- while (iterator1.hasNext()) {
|
2024-01-22 19:01:10 +01:00
|
|
|
+ while (iterator1.hasNext() && this.numCollisions < this.level().paperConfig().collisions.maxEntityCollisions) { // Paper - Cap entity collisions
|
2023-09-21 22:35:39 +02:00
|
|
|
Entity entity1 = (Entity) iterator1.next();
|
|
|
|
-
|
2024-01-22 19:01:10 +01:00
|
|
|
+ entity1.numCollisions++; // Paper - Cap entity collisions
|
|
|
|
+ this.numCollisions++; // Paper - Cap entity collisions
|
2023-09-21 22:35:39 +02:00
|
|
|
this.doPush(entity1);
|
2022-12-07 19:52:24 +01:00
|
|
|
}
|
2023-09-21 22:35:39 +02:00
|
|
|
}
|