SPIGOT-4735: ProjectileHitEvent Fires Immediately

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-04-25 09:23:21 +10:00
parent 5faa894081
commit 455eafa839

View file

@ -1052,7 +1052,11 @@ public class CraftEventFactory {
return event;
}
public static ProjectileHitEvent callProjectileHitEvent(Entity entity, MovingObjectPosition position) {
public static void callProjectileHitEvent(Entity entity, MovingObjectPosition position) {
if (position.getType() == MovingObjectPosition.EnumMovingObjectType.MISS) {
return;
}
Block hitBlock = null;
BlockFace hitFace = null;
if (position.getType() == MovingObjectPosition.EnumMovingObjectType.BLOCK) {
@ -1068,7 +1072,6 @@ public class CraftEventFactory {
ProjectileHitEvent event = new ProjectileHitEvent((Projectile) entity.getBukkitEntity(), hitEntity, hitBlock, hitFace);
entity.world.getServer().getPluginManager().callEvent(event);
return event;
}
public static ExpBottleEvent callExpBottleEvent(Entity entity, int exp) {