Small fix

This commit is contained in:
fed 2023-12-24 01:50:25 +01:00
parent 3ef6162f04
commit 2e83156e46

View File

@ -1144,11 +1144,6 @@ namespace party
return;
}
if (download_files(target, info, false))
{
return;
}
server_connection_state.motd = info.get("sv_motd");
server_connection_state.max_clients = std::stoi(info.get("sv_maxclients"));
server_connection_state.base_url = info.get("sv_wwwBaseUrl");
@ -1161,6 +1156,11 @@ namespace party
server_discord_info.emplace(discord_info);
}
if (download_files(target, info, false))
{
return;
}
connect_to_party(target, mapname, gametype);
});
}