SPIGOT-5866: Beehive unknown TargetReason

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2020-06-28 08:56:12 +10:00
parent 87462b8620
commit e477e8caec

View file

@ -0,0 +1,11 @@
--- a/net/minecraft/server/BlockBeehive.java
+++ b/net/minecraft/server/BlockBeehive.java
@@ -55,7 +55,7 @@
EntityBee entitybee = (EntityBee) iterator.next();
if (entitybee.getGoalTarget() == null) {
- entitybee.setGoalTarget((EntityLiving) list1.get(world.random.nextInt(i)));
+ entitybee.setGoalTarget((EntityLiving) list1.get(world.random.nextInt(i)), org.bukkit.event.entity.EntityTargetEvent.TargetReason.CLOSEST_PLAYER, true); // CraftBukkit
}
}
}