mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2025-07-30 10:47:33 +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",
|
"The incoming request for player {} uses a local IP address",
|
||||||
requestedUsername
|
requestedUsername
|
||||||
);
|
);
|
||||||
plugin.getLog().warn(ADDRESS_VERIFY_WARNING);
|
|
||||||
} else {
|
} else {
|
||||||
plugin.getLog().warn("If you think this is an error, please verify that the incoming "
|
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);
|
+ "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) {
|
} catch (IOException ioEx) {
|
||||||
disconnect("error-kick", "Failed to connect to session server", ioEx);
|
disconnect("error-kick", "Failed to connect to session server", ioEx);
|
||||||
|
@ -126,7 +126,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.md-5</groupId>
|
<groupId>net.md-5</groupId>
|
||||||
<artifactId>bungeecord-proxy</artifactId>
|
<artifactId>bungeecord-proxy</artifactId>
|
||||||
<version>1.19-R0.1-SNAPSHOT</version>
|
<version>1.20-R0.2-SNAPSHOT</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<!-- Use our own newer api version -->
|
<!-- Use our own newer api version -->
|
||||||
<exclusions>
|
<exclusions>
|
||||||
|
@ -34,8 +34,8 @@ public interface PasswordGenerator<P> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate a password for a non-registered player
|
* Generate a password for a non-registered player
|
||||||
* @param player
|
* @param player player representation
|
||||||
* @return daw
|
* @return generated password
|
||||||
*/
|
*/
|
||||||
String getRandomPassword(P player);
|
String getRandomPassword(P player);
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ public enum FloodgateState {
|
|||||||
*/
|
*/
|
||||||
NOT_MIGRATED(3);
|
NOT_MIGRATED(3);
|
||||||
|
|
||||||
private int value;
|
private final int value;
|
||||||
|
|
||||||
FloodgateState(int value) {
|
FloodgateState(int value) {
|
||||||
this.value = 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
|
* This event fires if the plugin performs an auto login on the platform where the login plugin is
|
||||||
*
|
* <p>
|
||||||
* {@snippet :
|
* {@snippet :
|
||||||
* @EventHandler()
|
* @EventHandler()
|
||||||
* public void onPlayerLogin(FastLoginAutoLoginEvent loginEvent) {
|
* public void onPlayerLogin(FastLoginAutoLoginEvent loginEvent) {
|
||||||
|
4
pom.xml
4
pom.xml
@ -52,8 +52,8 @@
|
|||||||
|
|
||||||
<lombook.version>1.18.32</lombook.version>
|
<lombook.version>1.18.32</lombook.version>
|
||||||
|
|
||||||
<floodgate.version>development-2.2.2-SNAPSHOT</floodgate.version>
|
<floodgate.version>2.2.3-SNAPSHOT</floodgate.version>
|
||||||
<geyser.version>2.1.0-SNAPSHOT</geyser.version>
|
<geyser.version>2.2.1-SNAPSHOT</geyser.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
Reference in New Issue
Block a user