2018-10-31 10:01:59 +01:00
|
|
|
From bfa18c1f7a973739c5cf1fd896da3edf405e92aa Mon Sep 17 00:00:00 2001
|
2018-06-30 05:50:17 +02:00
|
|
|
From: Brokkonaut <hannos17@gmx.de>
|
|
|
|
Date: Sat, 30 Jun 2018 05:45:39 +0200
|
|
|
|
Subject: [PATCH] Improve ProjectileHitEvent to include the BlockFace where the
|
|
|
|
projectile has hit
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
2018-10-31 10:01:59 +01:00
|
|
|
index d769a913d2..bc175d4c51 100644
|
2018-06-30 05:50:17 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
2018-10-31 10:01:59 +01:00
|
|
|
@@ -858,7 +858,7 @@ public class CraftEventFactory {
|
2018-06-30 05:50:17 +02:00
|
|
|
hitBlock = entity.getBukkitEntity().getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
|
|
|
}
|
|
|
|
|
|
|
|
- ProjectileHitEvent event = new ProjectileHitEvent((Projectile) entity.getBukkitEntity(), position.entity == null ? null : position.entity.getBukkitEntity(), hitBlock);
|
|
|
|
+ ProjectileHitEvent event = new ProjectileHitEvent((Projectile) entity.getBukkitEntity(), position.entity == null ? null : position.entity.getBukkitEntity(), hitBlock, position.direction == null ? null : CraftBlock.notchToBlockFace(position.direction)); // Paper - add BlockFace parameter
|
|
|
|
entity.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
--
|
2018-10-23 01:16:21 +02:00
|
|
|
2.19.1
|
2018-06-30 05:50:17 +02:00
|
|
|
|