2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/entity/EntityCreature.java
|
|
|
|
+++ b/net/minecraft/world/entity/EntityCreature.java
|
2024-04-23 17:15:00 +02:00
|
|
|
@@ -11,6 +11,10 @@
|
2021-03-15 23:00:00 +01:00
|
|
|
import net.minecraft.world.level.World;
|
|
|
|
import net.minecraft.world.phys.Vec3D;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.event.entity.EntityUnleashEvent;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public abstract class EntityCreature extends EntityInsentient {
|
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
protected static final float DEFAULT_WALK_TARGET_VALUE = 0.0F;
|
2024-04-23 17:15:00 +02:00
|
|
|
@@ -67,6 +71,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
if (this instanceof EntityTameableAnimal && ((EntityTameableAnimal) this).isInSittingPose()) {
|
2014-11-25 22:32:16 +01:00
|
|
|
if (f > 10.0F) {
|
2023-06-07 17:30:00 +02:00
|
|
|
+ this.level().getCraftServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), EntityUnleashEvent.UnleashReason.DISTANCE)); // CraftBukkit
|
2021-11-21 23:00:00 +01:00
|
|
|
this.dropLeash(true, true);
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2024-04-23 17:15:00 +02:00
|
|
|
@@ -75,6 +80,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
this.onLeashDistance(f);
|
2014-11-25 22:32:16 +01:00
|
|
|
if (f > 10.0F) {
|
2023-06-07 17:30:00 +02:00
|
|
|
+ this.level().getCraftServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), EntityUnleashEvent.UnleashReason.DISTANCE)); // CraftBukkit
|
2021-11-21 23:00:00 +01:00
|
|
|
this.dropLeash(true, true);
|
|
|
|
this.goalSelector.disableControlFlag(PathfinderGoal.Type.MOVE);
|
2016-11-17 02:41:03 +01:00
|
|
|
} else if (f > 6.0F) {
|