aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0488-Configurable-max-leash-distance.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0488-Configurable-max-leash-distance.patch')
-rw-r--r--patches/server/0488-Configurable-max-leash-distance.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/patches/server/0488-Configurable-max-leash-distance.patch b/patches/server/0488-Configurable-max-leash-distance.patch
new file mode 100644
index 0000000000..e228b633f0
--- /dev/null
+++ b/patches/server/0488-Configurable-max-leash-distance.patch
@@ -0,0 +1,28 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jake Potrebic <[email protected]>
+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
+index 5e2f10f5fd7219ebaefb1c5b5ac9bc7c71fae179..e92831739603ef1b5678c9d44e85ab70d62be0e7 100644
+--- a/src/main/java/net/minecraft/world/entity/PathfinderMob.java
++++ b/src/main/java/net/minecraft/world/entity/PathfinderMob.java
+@@ -71,7 +71,7 @@ public abstract class PathfinderMob extends Mob {
+ float f = this.distanceTo(entity);
+
+ if (this instanceof TamableAnimal && ((TamableAnimal) this).isInSittingPose()) {
+- if (f > 10.0F) {
++ if (f > entity.level().paperConfig().misc.maxLeashDistance) { // Paper - Configurable max leash distance
+ this.level().getCraftServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), EntityUnleashEvent.UnleashReason.DISTANCE)); // CraftBukkit
+ this.dropLeash(true, true);
+ }
+@@ -80,7 +80,7 @@ public abstract class PathfinderMob extends Mob {
+ }
+
+ this.onLeashDistance(f);
+- if (f > 10.0F) {
++ if (f > entity.level().paperConfig().misc.maxLeashDistance) { // Paper - Configurable max leash distance
+ this.level().getCraftServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), EntityUnleashEvent.UnleashReason.DISTANCE)); // CraftBukkit
+ this.dropLeash(true, true);
+ this.goalSelector.disableControlFlag(Goal.Flag.MOVE);