aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index b10acc7..b2d77f5 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -2031,7 +2031,8 @@ namespace OpenSim.Region.Framework.Scenes
2031 //} 2031 //}
2032 2032
2033 // And the new channel... 2033 // And the new channel...
2034 successYN = m_interregionCommsOut.SendCreateObject(newRegionHandle, grp); 2034 if (m_interregionCommsOut != null)
2035 successYN = m_interregionCommsOut.SendCreateObject(newRegionHandle, grp);
2035 2036
2036 if (successYN) 2037 if (successYN)
2037 { 2038 {