diff options
author | Diva Canto | 2012-03-20 17:29:34 -0700 |
---|---|---|
committer | Diva Canto | 2012-03-20 17:49:05 -0700 |
commit | fa30ace67d9ccef6a57498240305d2b8d7b6aa01 (patch) | |
tree | a93f1a3f575834400051a9f6059a485ce93ab5c6 | |
parent | Add some doc about the EventManager.OnLoginsEnabled event. (diff) | |
download | opensim-SC-fa30ace67d9ccef6a57498240305d2b8d7b6aa01.zip opensim-SC-fa30ace67d9ccef6a57498240305d2b8d7b6aa01.tar.gz opensim-SC-fa30ace67d9ccef6a57498240305d2b8d7b6aa01.tar.bz2 opensim-SC-fa30ace67d9ccef6a57498240305d2b8d7b6aa01.tar.xz |
Fixed borkness with map search introduce by my last changes to it.
-rw-r--r-- | OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs | 2 |
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; |