2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
Date: Wed, 15 Apr 2020 17:56:07 -0700
|
|
|
|
Subject: [PATCH] Don't run entity collision code if not needed
|
|
|
|
|
|
|
|
Will not run if max entity craming is disabled and
|
|
|
|
the max collisions per entity is less than or equal to 0
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2022-06-03 06:26:56 +02:00
|
|
|
index b28689f2621ee7d5129ab6d1853d9ee8823bf1d0..e9efb18ac776cdf92b967aa400d5d112d0481dfc 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
|
2022-03-01 06:43:03 +01:00
|
|
|
@@ -3280,10 +3280,16 @@ public abstract class LivingEntity extends Entity {
|
2021-06-11 14:02:28 +02:00
|
|
|
protected void serverAiStep() {}
|
|
|
|
|
|
|
|
protected void pushEntities() {
|
2021-06-14 03:06:38 +02:00
|
|
|
+ // Paper start - don't run getEntities if we're not going to use its result
|
2021-06-11 14:02:28 +02:00
|
|
|
+ int i = this.level.getGameRules().getInt(GameRules.RULE_MAX_ENTITY_CRAMMING);
|
|
|
|
+ if (i <= 0 && level.paperConfig.maxCollisionsPerEntity <= 0) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
2021-06-14 03:06:38 +02:00
|
|
|
+ // Paper end - don't run getEntities if we're not going to use its result
|
2021-11-24 12:06:34 +01:00
|
|
|
List<Entity> list = this.level.getEntities((Entity) this, this.getBoundingBox(), EntitySelector.pushableBy(this));
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
if (!list.isEmpty()) {
|
|
|
|
- int i = this.level.getGameRules().getInt(GameRules.RULE_MAX_ENTITY_CRAMMING);
|
|
|
|
+ // Paper - move up
|
|
|
|
int j;
|
|
|
|
|
|
|
|
if (i > 0 && list.size() > i - 1 && this.random.nextInt(4) == 0) {
|