mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
15a21299da
Discussion ongoing in PR #449 By: kaenganxt <kaenganxt@mc-anura.de>
11 lines
599 B
Diff
11 lines
599 B
Diff
--- a/net/minecraft/server/ItemPotion.java
|
|
+++ b/net/minecraft/server/ItemPotion.java
|
|
@@ -30,7 +30,7 @@
|
|
if (mobeffect.getMobEffect().isInstant()) {
|
|
mobeffect.getMobEffect().applyInstantEffect(entityhuman, entityhuman, entityliving, mobeffect.getAmplifier(), 1.0D);
|
|
} else {
|
|
- entityliving.addEffect(new MobEffect(mobeffect));
|
|
+ entityliving.addEffect(new MobEffect(mobeffect), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.POTION_DRINK); // CraftBukkit
|
|
}
|
|
}
|
|
}
|