mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2025-07-29 18:27:36 +02:00
Update deps
This commit is contained in:
@ -173,12 +173,12 @@ public class VerifyResponseTask implements Runnable {
|
||||
"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);
|
||||
|
@ -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>
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -47,7 +47,7 @@ public enum FloodgateState {
|
||||
*/
|
||||
NOT_MIGRATED(3);
|
||||
|
||||
private int value;
|
||||
private final int value;
|
||||
|
||||
FloodgateState(int value) {
|
||||
this.value = value;
|
||||
|
@ -30,7 +30,7 @@ import com.github.games647.fastlogin.core.storage.StoredProfile;
|
||||
|
||||
/**
|
||||
* 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) {
|
||||
|
4
pom.xml
4
pom.xml
@ -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>
|
||||
|
Reference in New Issue
Block a user