blob: 850580e71bcd30ca2131c14bec391321440ef3d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- /home/matt/mc-dev-private//net/minecraft/server/PathfinderGoalSit.java 2015-02-26 22:40:22.971608135 +0000
+++ src/main/java/net/minecraft/server/PathfinderGoalSit.java 2015-02-26 22:40:22.971608135 +0000
@@ -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
} else if (this.entity.V()) {
return false;
} else if (!this.entity.onGround) {
|