2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityCreature.java
|
|
|
|
+++ b/net/minecraft/server/EntityCreature.java
|
2015-02-26 23:41:06 +01:00
|
|
|
@@ -2,6 +2,10 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
import java.util.UUID;
|
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.event.entity.EntityUnleashEvent;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public abstract class EntityCreature extends EntityInsentient {
|
|
|
|
|
2017-05-14 04:00:00 +02:00
|
|
|
public static final UUID bv = UUID.fromString("E199AD21-BA8A-4C53-8D13-6182D5C69D3A");
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -68,6 +72,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);
|
|
|
|
}
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -76,6 +81,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2017-06-08 10:00:00 +02:00
|
|
|
this.q(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) {
|