You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
433 B
11 lines
433 B
--- ../src-base/minecraft/net/minecraft/entity/ai/EntityAISit.java |
|
+++ ../src-work/minecraft/net/minecraft/entity/ai/EntityAISit.java |
|
@@ -19,7 +19,7 @@ |
|
{ |
|
if (!this.theEntity.isTamed()) |
|
{ |
|
- return false; |
|
+ return this.isSitting && this.theEntity.getAttackTarget() == null; // CraftBukkit - Allow sitting for wild animals |
|
} |
|
else if (this.theEntity.isInWater()) |
|
{
|
|
|