2019-03-20 02:46:00 +01:00
|
|
|
From f34f47817491a0b6e37e1779964f96dd5cf83240 Mon Sep 17 00:00:00 2001
|
2018-06-19 04:19:59 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 18 Jun 2018 22:19:36 -0400
|
|
|
|
Subject: [PATCH] Fire EntityShootBowEvent for Illusioner
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityIllagerIllusioner.java b/src/main/java/net/minecraft/server/EntityIllagerIllusioner.java
|
2019-03-20 02:46:00 +01:00
|
|
|
index 08af4453f..8b595979e 100644
|
2018-06-19 04:19:59 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityIllagerIllusioner.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityIllagerIllusioner.java
|
|
|
|
@@ -123,8 +123,18 @@ public class EntityIllagerIllusioner extends EntityIllagerWizard implements IRan
|
|
|
|
double d3 = (double) MathHelper.sqrt(d0 * d0 + d2 * d2);
|
|
|
|
|
|
|
|
entityarrow.shoot(d0, d1 + d3 * 0.20000000298023224D, d2, 1.6F, (float) (14 - this.world.getDifficulty().a() * 4));
|
|
|
|
+ // Paper start
|
|
|
|
+ org.bukkit.event.entity.EntityShootBowEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callEntityShootBowEvent(this, this.getItemInMainHand(), this.getItemInOffHand(), entityarrow,0.8F);
|
|
|
|
+ if (event.isCancelled()) {
|
|
|
|
+ event.getProjectile().remove();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (event.getProjectile() == entityarrow.getBukkitEntity()) {
|
|
|
|
+ this.world.addEntity(entityarrow);
|
|
|
|
+ }
|
2018-07-19 01:16:19 +02:00
|
|
|
this.a(SoundEffects.ENTITY_SKELETON_SHOOT, 1.0F, 1.0F / (this.getRandom().nextFloat() * 0.4F + 0.8F));
|
2018-06-19 04:19:59 +02:00
|
|
|
- this.world.addEntity(entityarrow);
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
2018-07-19 01:16:19 +02:00
|
|
|
protected EntityArrow v(float f) {
|
2018-06-19 04:19:59 +02:00
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2018-06-19 04:19:59 +02:00
|
|
|
|