WitchReadyPotionEvent

This commit is contained in:
Aikar
2018-06-05 22:47:26 -04:00
parent a3b5f969ed
commit b64e7f96d3
2 changed files with 24 additions and 1 deletions

View File

@@ -1974,4 +1974,14 @@ public class CraftEventFactory {
).callEvent();
}
// Paper end - PlayerUseUnknownEntityEvent
// Paper start - WitchReadyPotionEvent
public static ItemStack handleWitchReadyPotionEvent(net.minecraft.world.entity.monster.Witch witch, @Nullable ItemStack potion) {
com.destroystokyo.paper.event.entity.WitchReadyPotionEvent event = new com.destroystokyo.paper.event.entity.WitchReadyPotionEvent((org.bukkit.entity.Witch) witch.getBukkitEntity(), CraftItemStack.asCraftMirror(potion));
if (!event.callEvent() || event.getPotion() == null) {
return ItemStack.EMPTY;
}
return org.bukkit.craftbukkit.inventory.CraftItemStack.asNMSCopy(event.getPotion());
}
// Paper end - WitchReadyPotionEvent
}