mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-23 16:56:31 +01:00
Add hitEntity to ProjectileHitEvent
By: md_5 <git@md-5.net>
This commit is contained in:
parent
986f585dba
commit
ff46831b2d
1 changed files with 16 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
package org.bukkit.event.entity;
|
||||
|
||||
import org.bukkit.entity.Entity;
|
||||
import org.bukkit.entity.Projectile;
|
||||
import org.bukkit.event.HandlerList;
|
||||
|
||||
|
@ -8,9 +9,15 @@ import org.bukkit.event.HandlerList;
|
|||
*/
|
||||
public class ProjectileHitEvent extends EntityEvent {
|
||||
private static final HandlerList handlers = new HandlerList();
|
||||
private final Entity hitEntity;
|
||||
|
||||
public ProjectileHitEvent(final Projectile projectile) {
|
||||
this(projectile, null);
|
||||
}
|
||||
|
||||
public ProjectileHitEvent(final Projectile projectile, Entity hitEntity) {
|
||||
super(projectile);
|
||||
this.hitEntity = hitEntity;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -18,6 +25,15 @@ public class ProjectileHitEvent extends EntityEvent {
|
|||
return (Projectile) entity;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the entity that was hit, if it was an entity that was hit.
|
||||
*
|
||||
* @return hit entity or else null
|
||||
*/
|
||||
public Entity getHitEntity() {
|
||||
return hitEntity;
|
||||
}
|
||||
|
||||
@Override
|
||||
public HandlerList getHandlers() {
|
||||
return handlers;
|
||||
|
|
Loading…
Add table
Reference in a new issue