Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
games647 committed May 2, 2024
1 parent 7479c8b commit cf4d19a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,12 @@ private void verifyResponse(BukkitLoginSession session) {
"The incoming request for player {} uses a local IP address",
requestedUsername
);
plugin.getLog().warn(ADDRESS_VERIFY_WARNING);
} else {
plugin.getLog().warn("If you think this is an error, please verify that the incoming "
+ "IP address {} is not associated with a server hosting company.", address);
plugin.getLog().warn(ADDRESS_VERIFY_WARNING);
}

plugin.getLog().warn(ADDRESS_VERIFY_WARNING);
}
} catch (IOException ioEx) {
disconnect("error-kick", "Failed to connect to session server", ioEx);
Expand Down
2 changes: 1 addition & 1 deletion bungee/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-proxy</artifactId>
<version>1.19-R0.1-SNAPSHOT</version>
<version>1.20-R0.2-SNAPSHOT</version>
<scope>provided</scope>
<!-- Use our own newer api version -->
<exclusions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public interface PasswordGenerator<P> {

/**
* Generate a password for a non-registered player
* @param player
* @return daw
* @param player player representation
* @return generated password
*/
String getRandomPassword(P player);
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public enum FloodgateState {
*/
NOT_MIGRATED(3);

private int value;
private final int value;

FloodgateState(int value) {
this.value = value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

/**
* This event fires if the plugin performs an auto login on the platform where the login plugin is
*
* <p>
* {@snippet :
* @EventHandler()
* public void onPlayerLogin(FastLoginAutoLoginEvent loginEvent) {
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@

<lombook.version>1.18.32</lombook.version>

<floodgate.version>development-2.2.2-SNAPSHOT</floodgate.version>
<geyser.version>2.1.0-SNAPSHOT</geyser.version>
<floodgate.version>2.2.3-SNAPSHOT</floodgate.version>
<geyser.version>2.2.1-SNAPSHOT</geyser.version>
</properties>

<modules>
Expand Down

0 comments on commit cf4d19a

Please sign in to comment.