2018-08-26 20:11:49 +02:00
|
|
|
From cb8246cce7751f17e828bd96d1a9d45fd9ad9dbf Mon Sep 17 00:00:00 2001
|
2018-05-17 02:49:47 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 16 May 2018 20:44:58 -0400
|
|
|
|
Subject: [PATCH] WitchThrowPotionEvent
|
|
|
|
|
|
|
|
Fired when a witch throws a potion at a player
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityWitch.java b/src/main/java/net/minecraft/server/EntityWitch.java
|
2018-08-26 20:11:49 +02:00
|
|
|
index 6717d3c331..648ed17a30 100644
|
2018-05-17 02:49:47 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityWitch.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityWitch.java
|
2018-07-19 01:16:19 +02:00
|
|
|
@@ -154,7 +154,15 @@ public class EntityWitch extends EntityMonster implements IRangedEntity {
|
|
|
|
potionregistry = Potions.M;
|
2018-05-17 02:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- EntityPotion entitypotion = new EntityPotion(this.world, this, PotionUtil.a(new ItemStack(Items.SPLASH_POTION), potionregistry));
|
|
|
|
+ // Paper start
|
|
|
|
+ ItemStack potion = PotionUtil.a(new ItemStack(Items.SPLASH_POTION), potionregistry);
|
2018-05-24 05:08:04 +02:00
|
|
|
+ com.destroystokyo.paper.event.entity.WitchThrowPotionEvent event = new com.destroystokyo.paper.event.entity.WitchThrowPotionEvent((org.bukkit.entity.Witch) this.getBukkitEntity(), (org.bukkit.entity.LivingEntity) entityliving.getBukkitEntity(), org.bukkit.craftbukkit.inventory.CraftItemStack.asCraftMirror(potion));
|
2018-05-17 02:49:47 +02:00
|
|
|
+ if (!event.callEvent()) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ potion = org.bukkit.craftbukkit.inventory.CraftItemStack.asNMSCopy(event.getPotion());
|
|
|
|
+ EntityPotion entitypotion = new EntityPotion(this.world, this, potion);
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
entitypotion.pitch -= -20.0F;
|
|
|
|
entitypotion.shoot(d1, d2 + (double) (f1 * 0.2F), d3, 0.75F, 8.0F);
|
|
|
|
--
|
2018-06-30 07:40:52 +02:00
|
|
|
2.18.0
|
2018-05-17 02:49:47 +02:00
|
|
|
|