| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2023-03-14 19:36:39 +01:00
										 |  |  | index 6d76be16ba1b35a65b851c2c861093c9998fcc61..7d839daeca968df2044bf2071bf1b5ff2b2aa3d6 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
 | 
					
						
							| 
									
										
										
										
											2023-03-14 19:36:39 +01:00
										 |  |  | @@ -382,6 +382,7 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
 | 
					
						
							| 
									
										
										
										
											2021-06-11 14:02:28 +02:00
										 |  |  |      public void inactiveTick() { } | 
					
						
							|  |  |  |      // Spigot end | 
					
						
							| 
									
										
										
										
											2021-12-03 21:28:15 +00:00
										 |  |  |      // Paper start | 
					
						
							|  |  |  | +    protected int numCollisions = 0; // Paper
 | 
					
						
							|  |  |  |      @javax.annotation.Nullable | 
					
						
							|  |  |  |      private org.bukkit.util.Vector origin; | 
					
						
							|  |  |  |      @javax.annotation.Nullable | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2023-03-14 19:36:39 +01:00
										 |  |  | index e004dffee9f1efe44c78f9b2e938b98cc4b2b847..2cd9c02fd664e263d9dae030d2c438a082c9e1b4 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
 | 
					
						
							| 
									
										
										
										
											2023-03-14 19:36:39 +01:00
										 |  |  | @@ -3277,8 +3277,11 @@ public abstract class LivingEntity extends Entity implements Attackable {
 | 
					
						
							| 
									
										
										
										
											2022-12-07 19:52:24 +01:00
										 |  |  |                      } | 
					
						
							| 
									
										
										
										
											2021-06-11 14:02:28 +02:00
										 |  |  |                  } | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											2022-12-07 19:52:24 +01:00
										 |  |  | -                for (j = 0; j < list.size(); ++j) {
 | 
					
						
							| 
									
										
										
										
											2022-06-09 01:51:45 -07:00
										 |  |  | +            this.numCollisions = Math.max(0, this.numCollisions - this.level.paperConfig().collisions.maxEntityCollisions); // Paper
 | 
					
						
							|  |  |  | +            for (j = 0; j < list.size() && this.numCollisions < this.level.paperConfig().collisions.maxEntityCollisions; ++j) { // Paper
 | 
					
						
							| 
									
										
										
										
											2022-12-07 19:52:24 +01:00
										 |  |  |                      Entity entity = (Entity) list.get(j); | 
					
						
							| 
									
										
										
										
											2021-06-11 14:02:28 +02:00
										 |  |  | +                entity.numCollisions++; // Paper
 | 
					
						
							| 
									
										
										
										
											2021-06-12 02:01:04 -07:00
										 |  |  | +                this.numCollisions++; // Paper
 | 
					
						
							| 
									
										
										
										
											2021-06-11 14:02:28 +02:00
										 |  |  |   | 
					
						
							| 
									
										
										
										
											2022-12-07 19:52:24 +01:00
										 |  |  |                      this.doPush(entity); | 
					
						
							|  |  |  |                  } |