Ref T730, add AFV test server in "test server list"

This commit is contained in:
Klaus Basan
2019-09-30 22:23:37 +02:00
committed by Mat Sutcliffe
parent 30158975b6
commit 5c56715c28
4 changed files with 24 additions and 6 deletions

View File

@@ -278,7 +278,13 @@ namespace BlackCore
CServerList CGlobalSetup::getPredefinedServersPlusHardcodedServers() const
{
static const CServerList hardcoded({ CServer::swiftFsdTestServer(), CServer::fscServer(), CServer::esTowerView() });
static const CServerList hardcoded(
{
CServer::swiftFsdTestServer(),
CServer::fscFsdServer(),
CServer::afvFsdTestServer(),
CServer::esTowerView()
});
CServerList testServers(m_predefinedServers);
testServers.addIfAddressNotExists(hardcoded);
return testServers;