2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2024-09-27 19:08:02 +00:00

Fix a typo.

This commit is contained in:
Tux 2014-06-06 17:38:41 -04:00
parent eca670c43d
commit c6a6a9d9d0

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) {