Add hypergrid teleporting support to user profiles picks

This commit is contained in:
BlueWall
2014-10-27 17:27:42 -04:00
parent c995b07818
commit b463870914
6 changed files with 152 additions and 19 deletions

View File

@@ -945,6 +945,13 @@ namespace OpenSim.Services.LLLoginService
m_log.DebugFormat("[LLLOGIN SERVICE]: found new key {0} {1}", keyName, aCircuit.ServiceURLs[keyName]);
}
if (!account.ServiceURLs.ContainsKey("GatekeeperURI") && !string.IsNullOrEmpty(m_GatekeeperURL))
{
m_log.DebugFormat("[LLLOGIN SERVICE]: adding gatekeeper uri {0}", m_GatekeeperURL);
account.ServiceURLs["GatekeeperURI"] = m_GatekeeperURL;
newUrls = true;
}
// The grid operator decided to override the defaults in the
// [LoginService] configuration. Let's store the correct ones.
if (newUrls)