0.9.1.0-post-fixes
Melanie 2019-08-09 10:59:51 +01:00
parent c80926192a
commit 0726ef5302
1 changed files with 4 additions and 1 deletions

View File

@ -208,7 +208,10 @@ namespace OpenSim.Region.ClientStack.Linden
m_log.Error("[CAPS]: GetDisplayNames disabled because user management component not found");
UserAccount account = m_userAccountService.GetUserAccount(m_Scene.RegionInfo.ScopeID, m_AgentID);
m_scopeID = account.ScopeID;
if (account == null) // Hypergrid?
m_scopeID = m_Scene.RegionInfo.ScopeID;
else
m_scopeID = account.ScopeID;
RegisterHandlers();