So I am trying to get the block hit by say and egg or a snowball instead of where the entity was when it died. Any thoughts on this? I am trying to do this from
ProjectileImpactEvent
and having some trouble with it. I can get the position of the impact by using
e.getRayTraceResult().getHitVec().x, e.getRayTraceResult().getHitVec().y, e.getRayTraceResult().getHitVec().z
or by
e.getEntity().getPosition()
but I can't really find a way to get the impacted block.
Any help would be much appreciated.