3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 20:40:07 +01:00
Paper/nms-patches/PathfinderGoalSit.patch

12 Zeilen
473 B
Diff

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
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
} else if (this.entity.aD()) {
return false;
2020-06-25 02:00:00 +02:00
} else if (!this.entity.isOnGround()) {