2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityCreature.java
|
|
|
|
+++ b/net/minecraft/server/EntityCreature.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -1,5 +1,9 @@
|
|
|
|
package net.minecraft.server;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.event.entity.EntityUnleashEvent;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public abstract class EntityCreature extends EntityInsentient {
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
private BlockPosition a;
|
|
|
|
@@ -66,6 +70,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
if (this instanceof EntityTameableAnimal && ((EntityTameableAnimal) this).isSitting()) {
|
|
|
|
if (f > 10.0F) {
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), EntityUnleashEvent.UnleashReason.DISTANCE)); // CraftBukkit
|
|
|
|
this.unleash(true, true);
|
|
|
|
}
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -74,6 +79,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
this.u(f);
|
2014-11-25 22:32:16 +01:00
|
|
|
if (f > 10.0F) {
|
|
|
|
+ this.world.getServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), EntityUnleashEvent.UnleashReason.DISTANCE)); // CraftBukkit
|
|
|
|
this.unleash(true, true);
|
2016-11-17 02:41:03 +01:00
|
|
|
this.goalSelector.c(1);
|
|
|
|
} else if (f > 6.0F) {
|