2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/PathfinderGoalSit.java
|
|
|
|
+++ b/net/minecraft/server/PathfinderGoalSit.java
|
2020-06-25 02:00:00 +02:00
|
|
|
@@ -19,7 +19,7 @@
|
2019-04-23 04:00:00 +02:00
|
|
|
@Override
|
2014-11-25 22:32:16 +01:00
|
|
|
public boolean a() {
|
|
|
|
if (!this.entity.isTamed()) {
|
|
|
|
- return false;
|
2020-06-25 02:00:00 +02:00
|
|
|
+ return this.entity.isWillSit() && this.entity.getGoalTarget() == null; // CraftBukkit - Allow sitting for wild animals
|
2020-08-11 23:00:00 +02:00
|
|
|
} else if (this.entity.aG()) {
|
2014-11-25 22:32:16 +01:00
|
|
|
return false;
|
2020-06-25 02:00:00 +02:00
|
|
|
} else if (!this.entity.isOnGround()) {
|