Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 05:20:05 +01:00
Made feeding wolves fire EntityRegainHealth events. Fixes BUKKIT-1111
Dieser Commit ist enthalten in:
Ursprung
fce3386aa0
Commit
6f40a22e16
@ -210,7 +210,7 @@ public class EntityWolf extends EntityTameableAnimal {
|
|||||||
|
|
||||||
if (itemfood.q() && this.datawatcher.getInt(18) < 20) {
|
if (itemfood.q() && this.datawatcher.getInt(18) < 20) {
|
||||||
--itemstack.count;
|
--itemstack.count;
|
||||||
this.heal(itemfood.getNutrition());
|
this.heal(itemfood.getNutrition(), org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason.EATING); // CraftBukkit
|
||||||
if (itemstack.count <= 0) {
|
if (itemstack.count <= 0) {
|
||||||
entityhuman.inventory.setItem(entityhuman.inventory.itemInHandIndex, (ItemStack) null);
|
entityhuman.inventory.setItem(entityhuman.inventory.itemInHandIndex, (ItemStack) null);
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren