aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorDiva Canto2012-03-20 17:29:34 -0700
committerDiva Canto2012-03-20 17:49:05 -0700
commitfa30ace67d9ccef6a57498240305d2b8d7b6aa01 (patch)
treea93f1a3f575834400051a9f6059a485ce93ab5c6 /OpenSim/Region
parentAdd some doc about the EventManager.OnLoginsEnabled event. (diff)
downloadopensim-SC_OLD-fa30ace67d9ccef6a57498240305d2b8d7b6aa01.zip
opensim-SC_OLD-fa30ace67d9ccef6a57498240305d2b8d7b6aa01.tar.gz
opensim-SC_OLD-fa30ace67d9ccef6a57498240305d2b8d7b6aa01.tar.bz2
opensim-SC_OLD-fa30ace67d9ccef6a57498240305d2b8d7b6aa01.tar.xz
Fixed borkness with map search introduce by my last changes to it.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs b/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs
index d60909c..f37dd94 100644
--- a/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs
+++ b/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs
@@ -132,7 +132,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
132 data.MapImageId = info.TerrainImage; 132 data.MapImageId = info.TerrainImage;
133 // ugh! V2-3 is very sensitive about the result being 133 // ugh! V2-3 is very sensitive about the result being
134 // exactly the same as the requested name 134 // exactly the same as the requested name
135 if (regionInfos.Count == 1) 135 if (regionInfos.Count == 1 && mapNameOrig.Contains("|") || mapNameOrig.Contains("+"))
136 data.Name = mapNameOrig; 136 data.Name = mapNameOrig;
137 else 137 else
138 data.Name = info.RegionName; 138 data.Name = info.RegionName;