mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-04 13:31:03 +02:00
11 lines
655 B
Diff
11 lines
655 B
Diff
--- a/net/minecraft/world/entity/monster/EntityWitch.java
|
|
+++ b/net/minecraft/world/entity/monster/EntityWitch.java
|
|
@@ -124,7 +124,7 @@
|
|
PotionContents potioncontents = (PotionContents) itemstack.get(DataComponents.POTION_CONTENTS);
|
|
|
|
if (itemstack.is(Items.POTION) && potioncontents != null) {
|
|
- potioncontents.forEachEffect(this::addEffect);
|
|
+ potioncontents.forEachEffect((effect) -> this.addEffect(effect, org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ATTACK)); // CraftBukkit
|
|
}
|
|
|
|
this.gameEvent(GameEvent.DRINK);
|