2019-07-20 06:01:24 +02:00
|
|
|
From e9a5ef45bd28700d89ae12366e546852377e52f7 Mon Sep 17 00:00:00 2001
|
2018-05-17 02:35:33 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 16 May 2018 20:35:16 -0400
|
|
|
|
Subject: [PATCH] WitchConsumePotionEvent
|
|
|
|
|
|
|
|
Fires when a witch consumes the potion in their hand
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityWitch.java b/src/main/java/net/minecraft/server/EntityWitch.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index 6b50d5334d..189263bf75 100644
|
2018-05-17 02:35:33 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityWitch.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityWitch.java
|
2019-04-29 05:14:31 +02:00
|
|
|
@@ -88,7 +88,11 @@ public class EntityWitch extends EntityRaider implements IRangedEntity {
|
2018-05-17 02:35:33 +02:00
|
|
|
|
|
|
|
this.setSlot(EnumItemSlot.MAINHAND, ItemStack.a);
|
|
|
|
if (itemstack.getItem() == Items.POTION) {
|
2019-01-01 04:15:55 +01:00
|
|
|
- List<MobEffect> list = PotionUtil.getEffects(itemstack);
|
2018-05-17 02:35:33 +02:00
|
|
|
+ // Paper start
|
|
|
|
+ com.destroystokyo.paper.event.entity.WitchConsumePotionEvent event = new com.destroystokyo.paper.event.entity.WitchConsumePotionEvent((org.bukkit.entity.Witch) this.getBukkitEntity(), org.bukkit.craftbukkit.inventory.CraftItemStack.asCraftMirror(itemstack));
|
|
|
|
+
|
2019-01-01 04:15:55 +01:00
|
|
|
+ List<MobEffect> list = event.callEvent() ? PotionUtil.getEffects(org.bukkit.craftbukkit.inventory.CraftItemStack.asNMSCopy(event.getPotion())) : null;
|
2018-05-17 02:35:33 +02:00
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
if (list != null) {
|
|
|
|
Iterator iterator = list.iterator();
|
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2018-05-17 02:35:33 +02:00
|
|
|
|