Comment out unnecessary "Region Found!" alert message when searching map
parent
8b2af1071f
commit
e4f0cdd263
|
@ -217,8 +217,9 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
|
||||||
{
|
{
|
||||||
if (regionInfos.Count == 0)
|
if (regionInfos.Count == 0)
|
||||||
remoteClient.SendAlertMessage("No regions found with that name.");
|
remoteClient.SendAlertMessage("No regions found with that name.");
|
||||||
else if (regionInfos.Count == 1)
|
// this seems unnecessary because found regions will show up in the search results
|
||||||
remoteClient.SendAlertMessage("Region found!");
|
//else if (regionInfos.Count == 1)
|
||||||
|
// remoteClient.SendAlertMessage("Region found!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue