aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0488-Configurable-max-leash-distance.patch
diff options
context:
space:
mode:
authorRiley Park <[email protected]>2024-05-15 17:06:59 -0700
committerGitHub <[email protected]>2024-05-15 17:06:59 -0700
commitf17519338bc589c045e0b32bfc37e048b23544d5 (patch)
treee50182ec698b4a9de8f366f485ee089b1901bbd9 /patches/server/0488-Configurable-max-leash-distance.patch
parent3fc93581bb876e8149b2ca423375a98f5ca12d27 (diff)
downloadPaper-f17519338bc589c045e0b32bfc37e048b23544d5.tar.gz
Paper-f17519338bc589c045e0b32bfc37e048b23544d5.zip
Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <[email protected]> Co-authored-by: masmc05 <[email protected]>
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);