aboutsummaryrefslogtreecommitdiffhomepage
path: root/patch-remap/mache-vineflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch
diff options
context:
space:
mode:
authorMiniDigger | Martin <[email protected]>2024-01-14 11:04:49 +0100
committerMiniDigger | Martin <[email protected]>2024-01-14 11:04:49 +0100
commitbee74680e607c2e29b038329f62181238911cd83 (patch)
tree708fd1a4a0227d9071243adf2a42d5e9e96cde4a /patch-remap/mache-vineflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch
parent0a44692ef6ff6e255d48eb3ba1bb114166eafda9 (diff)
downloadPaper-softspoon.tar.gz
Paper-softspoon.zip
add remapped patches as a testsoftspoon
Diffstat (limited to 'patch-remap/mache-vineflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch')
-rw-r--r--patch-remap/mache-vineflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/patch-remap/mache-vineflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch b/patch-remap/mache-vineflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch
new file mode 100644
index 0000000000..d3290f2029
--- /dev/null
+++ b/patch-remap/mache-vineflower-stripped/net/minecraft/world/effect/SaturationMobEffect.java.patch
@@ -0,0 +1,34 @@
+--- 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 {
+ protected SaturationMobEffect(MobEffectCategory category, int color) {
+@@ -11,8 +16,18 @@
+ @Override
+ public void applyEffectTick(LivingEntity livingEntity, int amplifier) {
+ super.applyEffectTick(livingEntity, amplifier);
+- if (!livingEntity.level().isClientSide && livingEntity instanceof Player player) {
+- player.getFoodData().eat(amplifier + 1, 1.0F);
++ if (!livingEntity.level().isClientSide && livingEntity instanceof Player) {
++ Player entityhuman = (Player) livingEntity;
++
++ // 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
+ }
+ }
+ }