mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
74 lines
3.8 KiB
Diff
74 lines
3.8 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: William Blake Galbreath <Blake.Galbreath@GMail.com>
|
||
|
Date: Wed, 18 Dec 2019 22:21:35 -0600
|
||
|
Subject: [PATCH] MC-145656 Fix Follow Range Initial Target
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||
|
@@ -0,0 +0,0 @@ public class PaperWorldConfig {
|
||
|
private void pillagerSettings() {
|
||
|
disablePillagerPatrols = getBoolean("game-mechanics.disable-pillager-patrols", disablePillagerPatrols);
|
||
|
}
|
||
|
+
|
||
|
+ public boolean entitiesTargetWithFollowRange = false;
|
||
|
+ private void entitiesTargetWithFollowRange() {
|
||
|
+ entitiesTargetWithFollowRange = getBoolean("entities-target-with-follow-range", entitiesTargetWithFollowRange);
|
||
|
+ }
|
||
|
}
|
||
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal.java b/src/main/java/net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal.java
|
||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||
|
--- a/src/main/java/net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal.java
|
||
|
+++ b/src/main/java/net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal.java
|
||
|
@@ -0,0 +0,0 @@ public class NearestAttackableTargetGoal<T extends LivingEntity> extends TargetG
|
||
|
this.randomInterval = reciprocalChance;
|
||
|
this.setFlags(EnumSet.of(Goal.Flag.TARGET));
|
||
|
this.targetConditions = (new TargetingConditions()).range(this.getFollowDistance()).selector(targetPredicate);
|
||
|
+ if (mob.level.paperConfig.entitiesTargetWithFollowRange) this.targetConditions.useFollowRange(); // Paper
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/targeting/TargetingConditions.java b/src/main/java/net/minecraft/world/entity/ai/targeting/TargetingConditions.java
|
||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||
|
--- a/src/main/java/net/minecraft/world/entity/ai/targeting/TargetingConditions.java
|
||
|
+++ b/src/main/java/net/minecraft/world/entity/ai/targeting/TargetingConditions.java
|
||
|
@@ -0,0 +0,0 @@ import java.util.function.Predicate;
|
||
|
import javax.annotation.Nullable;
|
||
|
import net.minecraft.world.entity.LivingEntity;
|
||
|
import net.minecraft.world.entity.Mob;
|
||
|
+import net.minecraft.world.entity.ai.attributes.AttributeInstance;
|
||
|
+import net.minecraft.world.entity.ai.attributes.Attributes;
|
||
|
|
||
|
public class TargetingConditions {
|
||
|
|
||
|
@@ -0,0 +0,0 @@ public class TargetingConditions {
|
||
|
|
||
|
if (this.range > 0.0D) {
|
||
|
double d0 = this.testInvisible ? targetEntity.getVisibilityPercent(baseEntity) : 1.0D;
|
||
|
- double d1 = Math.max(this.range * d0, 2.0D);
|
||
|
+ double d1 = Math.max((useFollowRange ? getFollowRange(baseEntity) : this.range) * d0, 2.0D); // Paper
|
||
|
double d2 = baseEntity.distanceToSqr(targetEntity.getX(), targetEntity.getY(), targetEntity.getZ());
|
||
|
|
||
|
if (d2 > d1 * d1) {
|
||
|
@@ -0,0 +0,0 @@ public class TargetingConditions {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
+
|
||
|
+ // Paper start
|
||
|
+ private boolean useFollowRange = false;
|
||
|
+
|
||
|
+ public TargetingConditions useFollowRange() {
|
||
|
+ this.useFollowRange = true;
|
||
|
+ return this;
|
||
|
+ }
|
||
|
+
|
||
|
+ private double getFollowRange(LivingEntity entityliving) {
|
||
|
+ AttributeInstance attributeinstance = entityliving.getAttribute(Attributes.FOLLOW_RANGE);
|
||
|
+ return attributeinstance == null ? 16.0D : attributeinstance.getValue();
|
||
|
+ }
|
||
|
+ // Paper end
|
||
|
}
|