SPIGOT-4735: ProjectileHitEvent Fires Immediately

This commit is contained in:
md_5 2019-04-25 09:23:21 +10:00
parent 14df075f80
commit de6cdd0364

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) {