mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
12 lines
458 B
Diff
12 lines
458 B
Diff
--- a/net/minecraft/server/PathfinderGoalSit.java
|
|
+++ b/net/minecraft/server/PathfinderGoalSit.java
|
|
@@ -15,7 +15,7 @@
|
|
@Override
|
|
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.au()) {
|
|
return false;
|
|
} else if (!this.entity.onGround) {
|