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 63780e3 commit 0d29c18Copy full SHA for 0d29c18
1 file changed
src/main/java/fr/xephi/authme/service/AntiBotService.java
@@ -56,7 +56,7 @@ public void reload(Settings settings) {
56
duration = settings.getProperty(ProtectionSettings.ANTIBOT_DURATION);
57
int sensibility = settings.getProperty(ProtectionSettings.ANTIBOT_SENSIBILITY);
58
int interval = settings.getProperty(ProtectionSettings.ANTIBOT_INTERVAL);
59
- flaggedCounter = new AtomicIntervalCounter(sensibility, interval);
+ flaggedCounter = new AtomicIntervalCounter(sensibility, interval * 1000);
60
61
// Stop existing protection
62
stopProtection();
0 commit comments