Made ProjectileHitEvent fire instantly when projectiles don't hit entities.

This commit is contained in:
sunkid
2011-07-14 10:46:02 -07:00
committed by EvilSeph
parent 43492ab6af
commit 30a382a6dc
5 changed files with 18 additions and 6 deletions

View File

@@ -7,6 +7,7 @@ import org.bukkit.craftbukkit.entity.CraftLivingEntity;
import org.bukkit.entity.Projectile;
import org.bukkit.event.entity.EntityDamageByProjectileEvent;
import org.bukkit.event.entity.EntityDamageEvent;
import org.bukkit.event.entity.ProjectileHitEvent;
// CraftBukkit end
public class EntitySnowball extends Entity {
@@ -148,6 +149,9 @@ public class EntitySnowball extends Entity {
if (movingobjectposition != null) {
// CraftBukkit start
ProjectileHitEvent phe = new ProjectileHitEvent((Projectile) this.getBukkitEntity());
this.world.getServer().getPluginManager().callEvent(phe);
if (movingobjectposition.entity != null) {
boolean stick;
if (movingobjectposition.entity instanceof EntityLiving) {