mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
HG: Instant Message working. Tested on HG standalones only. Needs a lot more testing.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user