mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* Added a Verbose and Debug error to border crossing so that this can be diagnosed further.
This commit is contained in:
@@ -1358,7 +1358,15 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
{
|
||||
if (m_scenePresences.ContainsKey(agentID))
|
||||
{
|
||||
m_scenePresences[agentID].MakeRootAgent(position, isFlying);
|
||||
try
|
||||
{
|
||||
m_scenePresences[agentID].MakeRootAgent(position, isFlying);
|
||||
}
|
||||
catch (System.Exception e)
|
||||
{
|
||||
MainLog.Instance.Verbose("SCENE", "Unable to do Agent Crossing.");
|
||||
MainLog.Instance.Debug("SCENE",e.ToString());
|
||||
}
|
||||
//m_innerScene.SwapRootChildAgent(false);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user