diff options
author | diva | 2009-02-09 23:12:49 +0000 |
---|---|---|
committer | diva | 2009-02-09 23:12:49 +0000 |
commit | d9d5a56f1da469cadb8d2d0e1594c16ec149901f (patch) | |
tree | 66549ff6bd132f9aed58b3bbb0fe61cef5403361 /OpenSim/Region/Framework | |
parent | Update svn properties, minor formatting cleanup. (diff) | |
download | opensim-SC_OLD-d9d5a56f1da469cadb8d2d0e1594c16ec149901f.zip opensim-SC_OLD-d9d5a56f1da469cadb8d2d0e1594c16ec149901f.tar.gz opensim-SC_OLD-d9d5a56f1da469cadb8d2d0e1594c16ec149901f.tar.bz2 opensim-SC_OLD-d9d5a56f1da469cadb8d2d0e1594c16ec149901f.tar.xz |
Fixes a failed unit test on ScenePresences tests. That test unit needs some fixing too.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 3 |
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 | { |