mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-16 21:31:25 +01:00
Fix unknown entity interaction clicked position getter if null
This commit is contained in:
parent
a925383693
commit
564ba7b184
@ -82,7 +82,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+ * @see org.bukkit.event.player.PlayerInteractAtEntityEvent
|
+ * @see org.bukkit.event.player.PlayerInteractAtEntityEvent
|
||||||
+ */
|
+ */
|
||||||
+ public @Nullable Vector getClickedRelativePosition() {
|
+ public @Nullable Vector getClickedRelativePosition() {
|
||||||
+ return clickedPosition.clone();
|
+ return this.clickedPosition != null ? this.clickedPosition.clone() : null;
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ @NotNull
|
+ @NotNull
|
||||||
|
Loading…
Reference in New Issue
Block a user