From 185115ee5172821c134dae88d418935e7da31cab Mon Sep 17 00:00:00 2001 From: Brian McBee Date: Wed, 8 Aug 2007 04:59:03 +0000 Subject: [PATCH] OGS1GridServices.cs Sims should crash less in gridmode just because their neighboring regions aren't available. --- OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index eb22b90882..32b0cfc2b0 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs @@ -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; + } } /// @@ -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)