2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/entity/EntityCreature.java
|
|
|
|
+++ b/net/minecraft/world/entity/EntityCreature.java
|
|
|
|
@@ -7,6 +7,10 @@
|
|
|
|
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;
|
|
|
|
@@ -43,6 +47,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) {
|
2021-06-11 13:33:49 +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
|
|
|
}
|
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
@@ -51,6 +56,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) {
|
2021-06-11 13:33:49 +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) {
|