diff options
author | Jeff Ames | 2008-08-17 02:31:45 +0000 |
---|---|---|
committer | Jeff Ames | 2008-08-17 02:31:45 +0000 |
commit | 796ccd3d37cb132c4c4f12c791fcdf76513c5cf0 (patch) | |
tree | e9cbe45df68bfb99d5a874072483db39eeab277e /OpenSim/Region/Environment/Scenes/Scene.cs | |
parent | Mantis#1971. Thank you kindly, BlueWall for a patch that: (diff) | |
download | opensim-SC_OLD-796ccd3d37cb132c4c4f12c791fcdf76513c5cf0.zip opensim-SC_OLD-796ccd3d37cb132c4c4f12c791fcdf76513c5cf0.tar.gz opensim-SC_OLD-796ccd3d37cb132c4c4f12c791fcdf76513c5cf0.tar.bz2 opensim-SC_OLD-796ccd3d37cb132c4c4f12c791fcdf76513c5cf0.tar.xz |
Update svn properties, minor formatting cleanup.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index f5117b9..e060f3d 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -3872,9 +3872,13 @@ namespace OpenSim.Region.Environment.Scenes | |||
3872 | public void RegionHandleRequest(IClientAPI client, LLUUID regionID) | 3872 | public void RegionHandleRequest(IClientAPI client, LLUUID regionID) |
3873 | { | 3873 | { |
3874 | RegionInfo info; | 3874 | RegionInfo info; |
3875 | if(regionID == RegionInfo.RegionID) info = RegionInfo; | 3875 | if (regionID == RegionInfo.RegionID) |
3876 | else info = CommsManager.GridService.RequestNeighbourInfo(regionID); | 3876 | info = RegionInfo; |
3877 | if(info != null) client.SendRegionHandle(regionID, info.RegionHandle); | 3877 | else |
3878 | info = CommsManager.GridService.RequestNeighbourInfo(regionID); | ||
3879 | |||
3880 | if (info != null) | ||
3881 | client.SendRegionHandle(regionID, info.RegionHandle); | ||
3878 | } | 3882 | } |
3879 | 3883 | ||
3880 | 3884 | ||