Fix a typo.

This commit is contained in:
Tux 2014-06-06 17:38:41 -04:00
parent eca670c43d
commit c6a6a9d9d0
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public final class RedisBungee extends Plugin {
long stamp = Long.valueOf(entry.getValue());
if (System.currentTimeMillis() < stamp + 30000)
servers.add(entry.getKey());
else if (nag == 0) {
else if (nag <= 0) {
getLogger().severe(entry.getKey() + " is " + (System.currentTimeMillis() - stamp) + "ms behind! (Time not synchronized or server down?)");
}
} catch (NumberFormatException ignored) {