diff options
author | Diva Canto | 2009-10-06 09:54:15 -0700 |
---|---|---|
committer | Diva Canto | 2009-10-06 09:54:15 -0700 |
commit | 3db4d38645260b0299e082b47b010dddf569bf31 (patch) | |
tree | 818a5b9675fd0cdd300a2660765aa847e6182b4b /OpenSim/Region | |
parent | Corrected words in error message. (diff) | |
download | opensim-SC_OLD-3db4d38645260b0299e082b47b010dddf569bf31.zip opensim-SC_OLD-3db4d38645260b0299e082b47b010dddf569bf31.tar.gz opensim-SC_OLD-3db4d38645260b0299e082b47b010dddf569bf31.tar.bz2 opensim-SC_OLD-3db4d38645260b0299e082b47b010dddf569bf31.tar.xz |
Removing dependencies on System.Runtime.Remoting.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs index 44e850b..6c89ac8 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs | |||
@@ -61,6 +61,10 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid | |||
61 | 61 | ||
62 | private void OnRegionUp(GridRegion otherRegion) | 62 | private void OnRegionUp(GridRegion otherRegion) |
63 | { | 63 | { |
64 | // This shouldn't happen | ||
65 | if (otherRegion == null) | ||
66 | return; | ||
67 | |||
64 | m_log.DebugFormat("[REGION CACHE]: (on region {0}) Region {1} is up @ {2}-{3}", | 68 | m_log.DebugFormat("[REGION CACHE]: (on region {0}) Region {1} is up @ {2}-{3}", |
65 | m_scene.RegionInfo.RegionName, otherRegion.RegionName, otherRegion.RegionLocX, otherRegion.RegionLocY); | 69 | m_scene.RegionInfo.RegionName, otherRegion.RegionName, otherRegion.RegionLocX, otherRegion.RegionLocY); |
66 | 70 | ||