HG: Instant Message working. Tested on HG standalones only. Needs a lot more testing.

This commit is contained in:
Diva Canto
2011-05-25 12:32:21 -07:00
parent e19031849e
commit 5c2168cae7
10 changed files with 1128 additions and 0 deletions

View File

@@ -474,6 +474,17 @@ namespace OpenSim.Services.HypergridService
return new Dictionary<string, object>();
}
public string LocateUser(UUID userID)
{
foreach (TravelingAgentInfo t in m_TravelingAgents.Values)
{
if (t.UserID == userID)
return t.GridExternalName;
}
return string.Empty;
}
}
class TravelingAgentInfo