Increased server startup time to 30 seconds.

This commit is contained in:
Jonathan Williams 2014-10-25 14:34:38 -07:00
parent 6f541a8d30
commit ead014f65e

View File

@ -169,7 +169,7 @@ public class ServerMonitor
if (onlineServers.contains(entry.getKey()))
iterator.remove();
else if (System.currentTimeMillis() - entry.getValue().getValue() > 20000)
else if (System.currentTimeMillis() - entry.getValue().getValue() > 30000)
{
String serverName = entry.getKey();
String serverAddress = entry.getValue().getKey();