Decrease min search length to 2 chars for map search.

avinationmerge
Melanie 2010-11-07 16:08:41 +01:00
parent 4db60a5a40
commit 5a3cd9f1d0
1 changed files with 2 additions and 2 deletions

View File

@ -86,9 +86,9 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
private void OnMapNameRequest(IClientAPI remoteClient, string mapName)
{
if (mapName.Length < 3)
if (mapName.Length < 2)
{
remoteClient.SendAlertMessage("Use a search string with at least 3 characters");
remoteClient.SendAlertMessage("Use a search string with at least 2 characters");
return;
}