OGS1GridServices.cs

Sims should crash less in gridmode just because their neighboring regions aren't available.
afrisby
Brian McBee 2007-08-08 04:59:03 +00:00
parent 029f0e4e3d
commit 185115ee51
1 changed files with 8 additions and 0 deletions

View File

@ -372,6 +372,10 @@ namespace OpenSim.Region.Communications.OGS1
MainLog.Instance.Error("Remoting Error: Unable to connect to remote region.\n" + e.ToString());
return false;
}
catch
{
return false;
}
}
/// <summary>
@ -418,6 +422,10 @@ namespace OpenSim.Region.Communications.OGS1
MainLog.Instance.Error("Remoting Error: Unable to connect to remote region.\n" + e.ToString());
return false;
}
catch
{
return false;
}
}
public bool AcknowledgeAgentCrossed(ulong regionHandle, LLUUID agentID)