mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-24 11:15:19 +01:00
Fix Captcha count
This commit is contained in:
parent
9236c1fb12
commit
a212a0c0fd
@ -80,15 +80,12 @@ public class AsynchronousLogin {
|
|||||||
plugin.captcha.remove(name);
|
plugin.captcha.remove(name);
|
||||||
plugin.captcha.putIfAbsent(name, i);
|
plugin.captcha.putIfAbsent(name, i);
|
||||||
}
|
}
|
||||||
if (plugin.captcha.containsKey(name) && plugin.captcha.get(name) >= Settings.maxLoginTry) {
|
if (plugin.captcha.containsKey(name) && plugin.captcha.get(name) > Settings.maxLoginTry) {
|
||||||
plugin.cap.put(name, rdm.nextString());
|
plugin.cap.putIfAbsent(name, rdm.nextString());
|
||||||
for (String s : m.retrieve(MessageKey.USAGE_CAPTCHA)) {
|
for (String s : m.retrieve(MessageKey.USAGE_CAPTCHA)) {
|
||||||
player.sendMessage(s.replace("THE_CAPTCHA", plugin.cap.get(name)).replace("<theCaptcha>", plugin.cap.get(name)));
|
player.sendMessage(s.replace("THE_CAPTCHA", plugin.cap.get(name)).replace("<theCaptcha>", plugin.cap.get(name)));
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
} else if (plugin.captcha.containsKey(name) && plugin.captcha.get(name) >= Settings.maxLoginTry) {
|
|
||||||
plugin.captcha.remove(name);
|
|
||||||
plugin.cap.remove(name);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user