mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2025-07-30 10:47:33 +02:00
No longer treat linked Floodgate players as conflicting names
Since linked players inherit the name of the Java player, it'll always conflict a Java player 's name
This commit is contained in:
@ -76,8 +76,11 @@ public class FloodgateAuthTask implements Runnable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//decide if checks should be made for conflicting Java player names
|
//decide if checks should be made for conflicting Java player names
|
||||||
if (autoLoginFloodgate.equals("no-conflict")
|
if (!isLinked &&
|
||||||
|| !isRegistered && autoRegisterFloodgate.equals("no-conflict")) {
|
(
|
||||||
|
autoLoginFloodgate.equals("no-conflict")
|
||||||
|
|| !isRegistered && autoRegisterFloodgate.equals("no-conflict"))
|
||||||
|
) {
|
||||||
// check for conflicting Premium Java name
|
// check for conflicting Premium Java name
|
||||||
Optional<Profile> premiumUUID = Optional.empty();
|
Optional<Profile> premiumUUID = Optional.empty();
|
||||||
try {
|
try {
|
||||||
|
Reference in New Issue
Block a user