We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 235d7f8 commit 4c0797dCopy full SHA for 4c0797d
bukkit/src/main/java/com/github/games647/fastlogin/bukkit/task/FloodgateAuthTask.java
@@ -76,8 +76,11 @@ public void run() {
76
}
77
78
//decide if checks should be made for conflicting Java player names
79
- if (autoLoginFloodgate.equals("no-conflict")
80
- || !isRegistered && autoRegisterFloodgate.equals("no-conflict")) {
+ if (!isLinked &&
+ (
81
+ autoLoginFloodgate.equals("no-conflict")
82
+ || !isRegistered && autoRegisterFloodgate.equals("no-conflict"))
83
+ ) {
84
// check for conflicting Premium Java name
85
Optional<Profile> premiumUUID = Optional.empty();
86
try {
0 commit comments