From d6d8c30343e5b4aed57bfd9c021b62e83cc0404a Mon Sep 17 00:00:00 2001 From: mohammed jasem alaajel Date: Sat, 16 Jul 2022 02:15:34 +0400 Subject: [PATCH] fix java docs --- .../redisbungee/events/PlayerChangedServerNetworkEvent.java | 2 +- .../minecraft/redisbungee/events/PlayerJoinedNetworkEvent.java | 2 +- .../minecraft/redisbungee/events/PlayerLeftNetworkEvent.java | 2 +- makeJavadocs.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerChangedServerNetworkEvent.java b/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerChangedServerNetworkEvent.java index ab6f1f5..1a80703 100644 --- a/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerChangedServerNetworkEvent.java +++ b/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerChangedServerNetworkEvent.java @@ -7,7 +7,7 @@ import java.util.UUID; * This event is sent when a player connects to a new server. RedisBungee sends the event only when * the proxy the player has been connected to is different than the local proxy. *

- * This event corresponds to {@link net.md_5.bungee.api.event.ServerConnectedEvent}, and is fired + * This event corresponds to {@link com.velocitypowered.api.event.player.ServerConnectedEvent}, and is fired * asynchronously. * * @since 0.3.4 diff --git a/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerJoinedNetworkEvent.java b/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerJoinedNetworkEvent.java index 0640bdd..5e5338e 100644 --- a/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerJoinedNetworkEvent.java +++ b/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerJoinedNetworkEvent.java @@ -7,7 +7,7 @@ import java.util.UUID; * This event is sent when a player joins the network. RedisBungee sends the event only when * the proxy the player has been connected to is different than the local proxy. *

- * This event corresponds to {@link net.md_5.bungee.api.event.PostLoginEvent}, and is fired + * This event corresponds to {@link com.velocitypowered.api.event.connection.PostLoginEvent}, and is fired * asynchronously. * * @since 0.3.4 diff --git a/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerLeftNetworkEvent.java b/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerLeftNetworkEvent.java index 817945b..8d83681 100644 --- a/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerLeftNetworkEvent.java +++ b/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/events/PlayerLeftNetworkEvent.java @@ -7,7 +7,7 @@ import java.util.UUID; * This event is sent when a player disconnects. RedisBungee sends the event only when * the proxy the player has been connected to is different than the local proxy. *

- * This event corresponds to {@link net.md_5.bungee.api.event.PlayerDisconnectEvent}, and is fired + * This event corresponds to {@link com.velocitypowered.api.event.connection.DisconnectEvent}, and is fired * asynchronously. * * @since 0.3.4 diff --git a/makeJavadocs.sh b/makeJavadocs.sh index 27c0ba1..5df33af 100644 --- a/makeJavadocs.sh +++ b/makeJavadocs.sh @@ -1,3 +1,3 @@ rm -rf javadoc mkdir javadoc -mvn javadoc:javadoc -pl RedisBungee-API,RedisBungee-BungeeEvents -am \ No newline at end of file +mvn javadoc:javadoc -pl RedisBungee-API,RedisBungee-Bungee,RedisBungee-Velocity -am \ No newline at end of file