2023-09-21 18:40:00 +02:00
|
|
|
--- a/net/minecraft/world/effect/HealOrHarmMobEffect.java
|
|
|
|
+++ b/net/minecraft/world/effect/HealOrHarmMobEffect.java
|
2024-04-23 17:15:00 +02:00
|
|
|
@@ -16,7 +16,7 @@
|
|
|
|
@Override
|
|
|
|
public boolean applyEffectTick(EntityLiving entityliving, int i) {
|
2023-09-21 18:40:00 +02:00
|
|
|
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) {
|