2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Sun, 3 Jan 2021 21:04:03 -0800
|
|
|
|
Subject: [PATCH] Configurable max leash distance
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/PathfinderMob.java b/src/main/java/net/minecraft/world/entity/PathfinderMob.java
|
2024-01-23 15:43:48 +01:00
|
|
|
index 5e9cf929674888b3a143a0691dc6936b304467f1..85a9bcbd229b56317c2de15670a04c6d0eb51e18 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/PathfinderMob.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/PathfinderMob.java
|
2024-01-23 15:43:48 +01:00
|
|
|
@@ -55,7 +55,7 @@ public abstract class PathfinderMob extends Mob {
|
2021-06-11 14:02:28 +02:00
|
|
|
float f = this.distanceTo(entity);
|
|
|
|
|
|
|
|
if (this instanceof TamableAnimal && ((TamableAnimal) this).isInSittingPose()) {
|
|
|
|
- if (f > 10.0F) {
|
2024-01-19 22:13:42 +01:00
|
|
|
+ if (f > entity.level().paperConfig().misc.maxLeashDistance) { // Paper - Configurable max leash distance
|
2023-06-08 02:54:54 +02:00
|
|
|
this.level().getCraftServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), EntityUnleashEvent.UnleashReason.DISTANCE)); // CraftBukkit
|
2021-06-11 14:02:28 +02:00
|
|
|
this.dropLeash(true, true);
|
|
|
|
}
|
2024-01-23 15:43:48 +01:00
|
|
|
@@ -64,7 +64,7 @@ public abstract class PathfinderMob extends Mob {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.onLeashDistance(f);
|
|
|
|
- if (f > 10.0F) {
|
2024-01-19 22:13:42 +01:00
|
|
|
+ if (f > entity.level().paperConfig().misc.maxLeashDistance) { // Paper - Configurable max leash distance
|
2023-06-08 02:54:54 +02:00
|
|
|
this.level().getCraftServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), EntityUnleashEvent.UnleashReason.DISTANCE)); // CraftBukkit
|
2021-06-11 14:02:28 +02:00
|
|
|
this.dropLeash(true, true);
|
|
|
|
this.goalSelector.disableControlFlag(Goal.Flag.MOVE);
|