geforkt von Mirrors/Paper
SPIGOT-3538: Add getHitBlockFace for ProjectileHitEvent
By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Ursprung
aa6ac2b0e2
Commit
92e8783d1e
@ -940,12 +940,13 @@ public class CraftEventFactory {
|
|||||||
|
|
||||||
public static ProjectileHitEvent callProjectileHitEvent(Entity entity, MovingObjectPosition position) {
|
public static ProjectileHitEvent callProjectileHitEvent(Entity entity, MovingObjectPosition position) {
|
||||||
Block hitBlock = null;
|
Block hitBlock = null;
|
||||||
|
BlockFace hitFace = null;
|
||||||
if (position.type == MovingObjectPosition.EnumMovingObjectType.BLOCK) {
|
if (position.type == MovingObjectPosition.EnumMovingObjectType.BLOCK) {
|
||||||
BlockPosition blockposition = position.getBlockPosition();
|
hitBlock = CraftBlock.at(entity.world, position.getBlockPosition());
|
||||||
hitBlock = entity.getBukkitEntity().getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
hitFace = CraftBlock.notchToBlockFace(position.direction);
|
||||||
}
|
}
|
||||||
|
|
||||||
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, hitFace);
|
||||||
entity.world.getServer().getPluginManager().callEvent(event);
|
entity.world.getServer().getPluginManager().callEvent(event);
|
||||||
return event;
|
return event;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren