diff options
Diffstat (limited to 'patch-remap/mache-spigotflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch')
-rw-r--r-- | patch-remap/mache-spigotflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/patch-remap/mache-spigotflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch b/patch-remap/mache-spigotflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch new file mode 100644 index 0000000000..6c674df037 --- /dev/null +++ b/patch-remap/mache-spigotflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch @@ -0,0 +1,30 @@ +--- a/net/minecraft/world/effect/SaturationMobEffect.java ++++ b/net/minecraft/world/effect/SaturationMobEffect.java +@@ -2,6 +2,10 @@ + + import net.minecraft.world.entity.LivingEntity; + import net.minecraft.world.entity.player.Player; ++// CraftBukkit start ++import org.bukkit.craftbukkit.entity.CraftPlayer; ++import org.bukkit.craftbukkit.event.CraftEventFactory; ++// CraftBukkit end + + class SaturationMobEffect extends InstantenousMobEffect { + +@@ -16,7 +19,15 @@ + if (!livingentity.level().isClientSide && livingentity instanceof Player) { + Player player = (Player) livingentity; + +- player.getFoodData().eat(i + 1, 1.0F); ++ // CraftBukkit start ++ int oldFoodLevel = entityhuman.getFoodData().foodLevel; ++ org.bukkit.event.entity.FoodLevelChangeEvent event = CraftEventFactory.callFoodLevelChangeEvent(entityhuman, amplifier + 1 + oldFoodLevel); ++ if (!event.isCancelled()) { ++ entityhuman.getFoodData().eat(event.getFoodLevel() - oldFoodLevel, 1.0F); ++ } ++ ++ ((CraftPlayer) entityhuman.getBukkitEntity()).sendHealthUpdate(); ++ // CraftBukkit end + } + + } |