aboutsummaryrefslogtreecommitdiffhomepage
path: root/patch-remap/og/net/minecraft/world/effect/HealOrHarmMobEffect.patch
blob: f4b437045a61a88f92e222f597a1bb72bd36d557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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) {