aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World
diff options
context:
space:
mode:
authordahlia2015-02-18 12:52:16 -0800
committerdahlia2015-02-18 12:52:16 -0800
commite4f0cdd2636bbe817d2b105728902a112f82db2f (patch)
tree92cf693c9d3927744d04d749df183f87599bf0d4 /OpenSim/Region/CoreModules/World
parentAdd NaN and Infinity tests for SOP Velocity and Acceleration setters. (diff)
downloadopensim-SC_OLD-e4f0cdd2636bbe817d2b105728902a112f82db2f.zip
opensim-SC_OLD-e4f0cdd2636bbe817d2b105728902a112f82db2f.tar.gz
opensim-SC_OLD-e4f0cdd2636bbe817d2b105728902a112f82db2f.tar.bz2
opensim-SC_OLD-e4f0cdd2636bbe817d2b105728902a112f82db2f.tar.xz
Comment out unnecessary "Region Found!" alert message when searching map
Diffstat (limited to 'OpenSim/Region/CoreModules/World')
-rw-r--r--OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs b/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs
index c1a398d..d862f18 100644
--- a/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs
+++ b/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs
@@ -217,8 +217,9 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
217 { 217 {
218 if (regionInfos.Count == 0) 218 if (regionInfos.Count == 0)
219 remoteClient.SendAlertMessage("No regions found with that name."); 219 remoteClient.SendAlertMessage("No regions found with that name.");
220 else if (regionInfos.Count == 1) 220 // this seems unnecessary because found regions will show up in the search results
221 remoteClient.SendAlertMessage("Region found!"); 221 //else if (regionInfos.Count == 1)
222 // remoteClient.SendAlertMessage("Region found!");
222 } 223 }
223 } 224 }
224 225