diff --git a/code/ryzom/client/client_default.cfg b/code/ryzom/client/client_default.cfg index 421d7b73c..05b10684d 100644 --- a/code/ryzom/client/client_default.cfg +++ b/code/ryzom/client/client_default.cfg @@ -41,7 +41,6 @@ Gamma_max = 1.0; Application = { "ryzom_open", "./client_ryzom_r.exe", "./" }; BackgroundDownloader = 0; -PatchServer = ""; PatchWanted = 0; SignUpURL = ""; StartupHost = "shard.ryzomcore.org:40916"; diff --git a/code/ryzom/client/src/client_cfg.cpp b/code/ryzom/client/src/client_cfg.cpp index c16608eb7..8bc31871d 100644 --- a/code/ryzom/client/src/client_cfg.cpp +++ b/code/ryzom/client/src/client_cfg.cpp @@ -420,7 +420,6 @@ CClientConfig::CClientConfig() PatchUrl.clear(); PatchletUrl.clear(); PatchVersion.clear(); - PatchServer.clear(); WebIgMainDomain = "shard.ryzomcore.org"; WebIgTrustedDomains.push_back(WebIgMainDomain); @@ -1050,13 +1049,11 @@ void CClientConfig::setValues() ///////////////////////// // NEW PATCHING SYSTEM // READ_BOOL_FV(PatchWanted) - READ_STRING_FV(PatchServer) READ_STRING_FV(PatchUrl) READ_STRING_FV(PatchVersion) READ_STRING_FV(RingReleaseNotePath) READ_STRING_FV(ReleaseNotePath) READ_BOOL_DEV(PatchWanted) - READ_STRING_DEV(PatchServer) READ_STRING_DEV(PatchUrl) READ_STRING_DEV(PatchVersion) READ_STRING_DEV(RingReleaseNotePath) diff --git a/code/ryzom/client/src/client_cfg.h b/code/ryzom/client/src/client_cfg.h index 8f96b4244..5b9c9099e 100644 --- a/code/ryzom/client/src/client_cfg.h +++ b/code/ryzom/client/src/client_cfg.h @@ -296,7 +296,6 @@ struct CClientConfig std::string PatchUrl; std::string PatchletUrl; std::string PatchVersion; - std::string PatchServer; std::string RingReleaseNotePath; std::string ReleaseNotePath;