2020-03-18 13:17:28 +01:00
|
|
|
From 7099030d8e7da370d14597e1b970b4e8c8b06c4c Mon Sep 17 00:00:00 2001
|
2020-02-21 19:46:00 +01:00
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Fri, 21 Feb 2020 18:44:28 +0000
|
|
|
|
Subject: [PATCH] Backport fix for MC-167561
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityWolf.java b/src/main/java/net/minecraft/server/EntityWolf.java
|
2020-03-18 13:17:28 +01:00
|
|
|
index db15d5e0a2..eec1e26b6e 100644
|
2020-02-21 19:46:00 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityWolf.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityWolf.java
|
|
|
|
@@ -296,7 +296,14 @@ public class EntityWolf extends EntityTameableAnimal {
|
|
|
|
boolean flag = super.a(entityhuman, enumhand);
|
|
|
|
|
|
|
|
if (!flag || this.isBaby()) {
|
|
|
|
- this.goalSit.setSitting(!this.isSitting());
|
|
|
|
+ //this.goalSit.setSitting(!this.isSitting()); // Paper start - copied from below
|
|
|
|
+ if (this.i((EntityLiving) entityhuman) && !this.i(itemstack)) {
|
|
|
|
+ this.goalSit.setSitting(!this.isSitting());
|
|
|
|
+ this.jumping = false;
|
|
|
|
+ this.navigation.o();
|
|
|
|
+ this.setGoalTarget((EntityLiving) null, TargetReason.FORGOT_TARGET, true); // CraftBukkit - reason
|
|
|
|
+ }
|
|
|
|
+ // Paper end - copied from below
|
|
|
|
}
|
|
|
|
|
|
|
|
return flag;
|
|
|
|
@@ -313,12 +320,14 @@ public class EntityWolf extends EntityTameableAnimal {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ /* Paper start - Move into above
|
|
|
|
if (this.i((EntityLiving) entityhuman) && !this.i(itemstack)) {
|
|
|
|
this.goalSit.setSitting(!this.isSitting());
|
|
|
|
this.jumping = false;
|
|
|
|
this.navigation.o();
|
|
|
|
this.setGoalTarget((EntityLiving) null, TargetReason.FORGOT_TARGET, true); // CraftBukkit - reason
|
|
|
|
}
|
|
|
|
+ */ // Paper end
|
|
|
|
} else if (item == Items.BONE && !this.isAngry()) {
|
|
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
|
|
|
itemstack.subtract(1);
|
|
|
|
--
|
2020-03-15 21:03:36 +01:00
|
|
|
2.25.1
|
2020-02-21 19:46:00 +01:00
|
|
|
|