Second try at having a bandaid for the multiple logins crash
parent
8ebf75ec24
commit
f7b5c6550b
|
@ -792,7 +792,14 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
Entities.Remove(agentID);
|
Entities.Remove(agentID);
|
||||||
}
|
}
|
||||||
|
|
||||||
avatar.Close();
|
try
|
||||||
|
{
|
||||||
|
avatar.Close();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
MainLog.Instance.Error("Scene.cs:RemoveClient exception: " + e.ToString());
|
||||||
|
}
|
||||||
|
|
||||||
// Remove client agent from profile, so new logins will work
|
// Remove client agent from profile, so new logins will work
|
||||||
CommsManager.UserService.clearUserAgent(agentID);
|
CommsManager.UserService.clearUserAgent(agentID);
|
||||||
|
|
Loading…
Reference in New Issue