Commits

Doc authored and md_5 committed def44cbfdda
SPIGOT-7669: Fix typo in ProjectileHitEvent#getHitBlockFace documentation
No tags

src/main/java/org/bukkit/event/entity/ProjectileHitEvent.java

Modified
53 53 *
54 54 * @return hit block or else null
55 55 */
56 56 @Nullable
57 57 public Block getHitBlock() {
58 58 return hitBlock;
59 59 }
60 60
61 61 /**
62 62 * Gets the block face that was hit, if it was a block that was hit and the
63 - * face was provided in the vent.
63 + * face was provided in the event.
64 64 *
65 65 * @return hit face or else null
66 66 */
67 67 @Nullable
68 68 public BlockFace getHitBlockFace() {
69 69 return hitFace;
70 70 }
71 71
72 72 /**
73 73 * Gets the entity that was hit, if it was an entity that was hit.

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut