Paper/nms-patches/PathfinderGoalBreed.patch

24 lines
1.2 KiB
Diff
Raw Normal View History

2015-02-26 23:41:06 +01:00
--- /home/matt/mc-dev-private//net/minecraft/server/PathfinderGoalBreed.java 2015-02-26 22:40:22.935608136 +0000
+++ src/main/java/net/minecraft/server/PathfinderGoalBreed.java 2015-02-26 22:40:22.935608136 +0000
@@ -70,6 +70,11 @@
EntityAgeable entityageable = this.d.createChild(this.e);
if (entityageable != null) {
+ // CraftBukkit start - set persistence for tame animals
+ if (entityageable instanceof EntityTameableAnimal && ((EntityTameableAnimal) entityageable).isTamed()) {
+ entityageable.persistent = true;
+ }
+ // CraftBukkit end
2015-02-26 23:41:06 +01:00
EntityHuman entityhuman = this.d.cq();
2015-02-26 23:41:06 +01:00
if (entityhuman == null && this.e.cq() != null) {
@@ -89,7 +94,7 @@
2015-02-26 23:41:06 +01:00
this.e.cs();
entityageable.setAgeRaw(-24000);
entityageable.setPositionRotation(this.d.locX, this.d.locY, this.d.locZ, 0.0F, 0.0F);
- this.a.addEntity(entityageable);
+ this.a.addEntity(entityageable, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.BREEDING); // CraftBukkit - added SpawnReason
2015-02-26 23:41:06 +01:00
Random random = this.d.bc();
for (int i = 0; i < 7; ++i) {