Added AttachObject method to IClientAPI.

Added RequestAvatar(LLUUID avatarID) method to world.
This commit is contained in:
MW
2007-06-11 10:24:24 +00:00
parent d93031b2dc
commit ed80c7ae32
4 changed files with 31 additions and 1 deletions

View File

@@ -591,6 +591,15 @@ namespace OpenSim.Region
return result;
}
public Avatar RequestAvatar(LLUUID avatarID)
{
if (this.Avatars.ContainsKey(avatarID))
{
return Avatars[avatarID];
}
return null;
}
#endregion
#region ShutDown