forked from TuxCoding/FastLogin
Fixed BungeeCord support by correctly saving the proxy ids (Fixes #22)
This commit is contained in:
@ -1,8 +1,13 @@
|
|||||||
|
######1.5.1
|
||||||
|
|
||||||
|
* Fixed BungeeCord support by correctly saving the proxy ids
|
||||||
|
|
||||||
######1.5
|
######1.5
|
||||||
|
|
||||||
* Added localization
|
* Added localization
|
||||||
* Fixed NPE on premium name check if it's pure cracked player
|
* Fixed NPE on premium name check if it's pure cracked player
|
||||||
* Fixed NPE in BungeeCord on cracked login for existing players
|
* Fixed NPE in BungeeCord on cracked login for existing players
|
||||||
|
* Fixed saving of existing cracked players
|
||||||
|
|
||||||
######1.4
|
######1.4
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.github.games647</groupId>
|
<groupId>com.github.games647</groupId>
|
||||||
<artifactId>fastlogin</artifactId>
|
<artifactId>fastlogin</artifactId>
|
||||||
<version>1.5</version>
|
<version>1.5.1</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -119,6 +119,8 @@ public class BungeeCordListener implements PluginMessageListener {
|
|||||||
UUID uuid = UUID.fromString(line.trim());
|
UUID uuid = UUID.fromString(line.trim());
|
||||||
ids.add(uuid);
|
ids.add(uuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return ids;
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
plugin.getLogger().log(Level.SEVERE, "Failed to create file for Proxy whitelist", ex);
|
plugin.getLogger().log(Level.SEVERE, "Failed to create file for Proxy whitelist", ex);
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
|
@ -51,7 +51,7 @@ public class ForceLoginTask implements Runnable {
|
|||||||
sendSuccessNotification();
|
sendSuccessNotification();
|
||||||
} else {
|
} else {
|
||||||
boolean success = false;
|
boolean success = false;
|
||||||
if (isOnlineThreadSafe() && session.isVerified()) {
|
if (isOnlineThreadSafe()) {
|
||||||
if (session.needsRegistration()) {
|
if (session.needsRegistration()) {
|
||||||
success = forceRegister(authPlugin, player);
|
success = forceRegister(authPlugin, player);
|
||||||
} else {
|
} else {
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.github.games647</groupId>
|
<groupId>com.github.games647</groupId>
|
||||||
<artifactId>fastlogin</artifactId>
|
<artifactId>fastlogin</artifactId>
|
||||||
<version>1.5</version>
|
<version>1.5.1</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.github.games647</groupId>
|
<groupId>com.github.games647</groupId>
|
||||||
<artifactId>fastlogin</artifactId>
|
<artifactId>fastlogin</artifactId>
|
||||||
<version>1.5</version>
|
<version>1.5.1</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
2
pom.xml
2
pom.xml
@ -8,7 +8,7 @@
|
|||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<name>FastLogin</name>
|
<name>FastLogin</name>
|
||||||
<version>1.5</version>
|
<version>1.5.1</version>
|
||||||
<inceptionYear>2015</inceptionYear>
|
<inceptionYear>2015</inceptionYear>
|
||||||
<url>https://www.spigotmc.org/resources/fastlogin.14153/</url>
|
<url>https://www.spigotmc.org/resources/fastlogin.14153/</url>
|
||||||
<description>
|
<description>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.github.games647</groupId>
|
<groupId>com.github.games647</groupId>
|
||||||
<artifactId>fastlogin</artifactId>
|
<artifactId>fastlogin</artifactId>
|
||||||
<version>1.5</version>
|
<version>1.5.1</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user