Comment out unnecessary "Region Found!" alert message when searching map

This commit is contained in:
dahlia
2015-02-18 12:52:16 -08:00
parent 8b2af1071f
commit e4f0cdd263

View File

@@ -217,8 +217,9 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
{
if (regionInfos.Count == 0)
remoteClient.SendAlertMessage("No regions found with that name.");
else if (regionInfos.Count == 1)
remoteClient.SendAlertMessage("Region found!");
// this seems unnecessary because found regions will show up in the search results
//else if (regionInfos.Count == 1)
// remoteClient.SendAlertMessage("Region found!");
}
}