Changed: use the client cfg variable StartupHost to say where the login system is (not harcoded anymore)

This commit is contained in:
vl 2010-05-10 15:58:39 +02:00
parent 79e158c125
commit 1b026e692c

View file

@ -193,7 +193,7 @@ void CHttpClient::disconnect()
// ***************************************************************************
bool CStartupHttpClient::connectToLogin()
{
return connect("open.ryzom.com:40916");
return connect(ClientCfg.ConfigFile.getVar("StartupHost").asString(0));
}
CStartupHttpClient HttpClient;