aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorTeravus Ovares2007-12-08 17:25:34 +0000
committerTeravus Ovares2007-12-08 17:25:34 +0000
commite0e9237a89c2d29bf63d5b161faac4767872d12b (patch)
treeaa95146cc1ecedd2e4c4b485af510c67c103d866 /OpenSim
parentThis patch fixes mantis 105. Basically, it stops the index exception when (diff)
downloadopensim-SC_OLD-e0e9237a89c2d29bf63d5b161faac4767872d12b.zip
opensim-SC_OLD-e0e9237a89c2d29bf63d5b161faac4767872d12b.tar.gz
opensim-SC_OLD-e0e9237a89c2d29bf63d5b161faac4767872d12b.tar.bz2
opensim-SC_OLD-e0e9237a89c2d29bf63d5b161faac4767872d12b.tar.xz
* Added back the regionup code so people in nearby sims can see a downed sim coming back up.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index b2cc750..b733522 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -266,8 +266,8 @@ namespace OpenSim.Region.Environment.Scenes
266 266
267 public override bool OtherRegionUp(RegionInfo otherRegion) 267 public override bool OtherRegionUp(RegionInfo otherRegion)
268 { 268 {
269 /* // Another region is up. We have to tell all our ScenePresences about it 269 // Another region is up. We have to tell all our ScenePresences about it
270 // This fails to get the desired effect and needs further work. 270
271 271
272 if (RegionInfo.RegionHandle != otherRegion.RegionHandle) 272 if (RegionInfo.RegionHandle != otherRegion.RegionHandle)
273 { 273 {
@@ -288,7 +288,7 @@ namespace OpenSim.Region.Environment.Scenes
288 MainLog.Instance.Verbose("INTERGRID", "Got notice about Region at X:" + otherRegion.RegionLocX.ToString() + " Y:" + otherRegion.RegionLocY.ToString() + " but it was too far away to send to the client"); 288 MainLog.Instance.Verbose("INTERGRID", "Got notice about Region at X:" + otherRegion.RegionLocX.ToString() + " Y:" + otherRegion.RegionLocY.ToString() + " but it was too far away to send to the client");
289 } 289 }
290 290
291 }*/ 291 }
292 return true; 292 return true;
293 } 293 }
294 294