This commit is contained in:
Rsl1122 2017-10-24 11:34:35 +03:00
parent 9aa5a01fe5
commit feff7de746

View File

@ -158,7 +158,14 @@ public class BungeeInformationManager extends InformationManager {
*/
private ServerInfo getInspectRequestProcessorServer(UUID uuid) {
if (bukkitServers.isEmpty()) {
throw new IllegalStateException("No Bukkit Servers.");
try {
refreshBukkitServerMap();
} catch (SQLException e) {
Log.toLog(this.getClass().getName(), e);
}
if (bukkitServers.isEmpty()) {
throw new IllegalStateException("No Bukkit Servers.");
}
}
Collection<ServerInfo> onlineServers = serverInfoManager.getOnlineBukkitServers();