mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2025-07-30 10:47:33 +02:00
Bump SodionAuth version
This commit is contained in:
@ -272,7 +272,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.Mohist-Community.SodionAuth</groupId>
|
<groupId>com.github.Mohist-Community.SodionAuth</groupId>
|
||||||
<artifactId>SodionAuth-Bukkit</artifactId>
|
<artifactId>SodionAuth-Bukkit</artifactId>
|
||||||
<version>b74392aa34</version>
|
<version>3a71c7f936</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>com.github.Mohist-Community.SodionAuth</groupId>
|
<groupId>com.github.Mohist-Community.SodionAuth</groupId>
|
||||||
|
@ -32,14 +32,16 @@ import red.mohist.sodionauth.bukkit.implementation.BukkitPlayer;
|
|||||||
import red.mohist.sodionauth.core.SodionAuthApi;
|
import red.mohist.sodionauth.core.SodionAuthApi;
|
||||||
import red.mohist.sodionauth.core.exception.AuthenticatedException;
|
import red.mohist.sodionauth.core.exception.AuthenticatedException;
|
||||||
|
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GitHub: https://github.com/Mohist-Community/SodionAuth
|
* GitHub: https://github.com/Mohist-Community/SodionAuth
|
||||||
* <p>
|
* <p>
|
||||||
* Project page:
|
* Project page: https://gitea.e-loli.com/SodionAuth/SodionAuth
|
||||||
* <p>
|
* <p>
|
||||||
* Bukkit: Unknown
|
* Bukkit: Unknown
|
||||||
* <p>
|
* <p>
|
||||||
* Spigot: Unknown
|
* Spigot: https://www.spigotmc.org/resources/sodionauth.76944/
|
||||||
*/
|
*/
|
||||||
public class SodionAuthHook implements AuthPlugin<Player> {
|
public class SodionAuthHook implements AuthPlugin<Player> {
|
||||||
|
|
||||||
@ -68,6 +70,9 @@ public class SodionAuthHook implements AuthPlugin<Player> {
|
|||||||
plugin.getLog().warn("Currently SodionAuth is not accepting forceRegister, " +
|
plugin.getLog().warn("Currently SodionAuth is not accepting forceRegister, " +
|
||||||
"It may be caused by unsupported AuthBackend");
|
"It may be caused by unsupported AuthBackend");
|
||||||
return false;
|
return false;
|
||||||
|
} catch (InterruptedException | ExecutionException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user