2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-06-25 16:09:55 +02:00
|
|
|
index a364ab990883bcdf84d8d92385a738200630864d..75d014ad49c701e4c693be4e2f8e7dc6d592fa5f 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
|
2019-04-29 05:14:31 +02:00
|
|
|
@@ -185,9 +185,16 @@ public class EntityWitch extends EntityRaider implements IRangedEntity {
|
2019-05-28 01:01:45 +02:00
|
|
|
potionregistry = Potions.WEAKNESS;
|
2018-05-17 02:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // 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());
|
2019-04-29 05:14:31 +02:00
|
|
|
EntityPotion entitypotion = new EntityPotion(this.world, this);
|
|
|
|
-
|
|
|
|
- entitypotion.setItem(PotionUtil.a(new ItemStack(Items.SPLASH_POTION), potionregistry));
|
|
|
|
+ entitypotion.setItem(potion);
|
2018-05-17 02:49:47 +02:00
|
|
|
+ // Paper end
|
|
|
|
entitypotion.pitch -= -20.0F;
|
2019-04-29 05:14:31 +02:00
|
|
|
entitypotion.shoot(d0, d1 + (double) (f1 * 0.2F), d2, 0.75F, 8.0F);
|
2020-06-25 16:09:55 +02:00
|
|
|
if (!this.isSilent()) {
|