Paper/nms-patches/PathfinderGoalSit.patch

12 lines
452 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/PathfinderGoalSit.java
+++ b/net/minecraft/server/PathfinderGoalSit.java
@@ -12,7 +12,7 @@
public boolean a() {
if (!this.entity.isTamed()) {
- return false;
+ return this.willSit && this.entity.getGoalTarget() == null; // CraftBukkit - Allow sitting for wild animals
2016-02-29 22:32:46 +01:00
} else if (this.entity.isInWater()) {
return false;
} else if (!this.entity.onGround) {