diff options
author | MiniDigger | Martin <[email protected]> | 2024-01-14 11:04:49 +0100 |
---|---|---|
committer | MiniDigger | Martin <[email protected]> | 2024-01-14 11:04:49 +0100 |
commit | bee74680e607c2e29b038329f62181238911cd83 (patch) | |
tree | 708fd1a4a0227d9071243adf2a42d5e9e96cde4a /patch-remap/og/net/minecraft/world/effect/HealOrHarmMobEffect.patch | |
parent | 0a44692ef6ff6e255d48eb3ba1bb114166eafda9 (diff) | |
download | Paper-softspoon.tar.gz Paper-softspoon.zip |
add remapped patches as a testsoftspoon
Diffstat (limited to 'patch-remap/og/net/minecraft/world/effect/HealOrHarmMobEffect.patch')
-rw-r--r-- | patch-remap/og/net/minecraft/world/effect/HealOrHarmMobEffect.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/patch-remap/og/net/minecraft/world/effect/HealOrHarmMobEffect.patch b/patch-remap/og/net/minecraft/world/effect/HealOrHarmMobEffect.patch new file mode 100644 index 0000000000..f4b437045a --- /dev/null +++ b/patch-remap/og/net/minecraft/world/effect/HealOrHarmMobEffect.patch @@ -0,0 +1,20 @@ +--- a/net/minecraft/world/effect/HealOrHarmMobEffect.java ++++ b/net/minecraft/world/effect/HealOrHarmMobEffect.java +@@ -17,7 +17,7 @@ + public void applyEffectTick(EntityLiving entityliving, int i) { + super.applyEffectTick(entityliving, i); + if (this.isHarm == entityliving.isInvertedHealAndHarm()) { +- entityliving.heal((float) Math.max(4 << i, 0)); ++ entityliving.heal((float) Math.max(4 << i, 0), org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason.MAGIC); // CraftBukkit + } else { + entityliving.hurt(entityliving.damageSources().magic(), (float) (6 << i)); + } +@@ -30,7 +30,7 @@ + + if (this.isHarm == entityliving.isInvertedHealAndHarm()) { + j = (int) (d0 * (double) (4 << i) + 0.5D); +- entityliving.heal((float) j); ++ entityliving.heal((float) j, org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason.MAGIC); // CraftBukkit + } else { + j = (int) (d0 * (double) (6 << i) + 0.5D); + if (entity == null) { |