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

inv-download
dahlia 2015-02-18 12:52:16 -08:00
parent 8b2af1071f
commit e4f0cdd263
1 changed files with 3 additions and 2 deletions

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!");
}
}