* simplify AddNewClient since making this root without using MakeRootAgent() no longer sets everything up properly

This commit is contained in:
Justin Clarke Casey
2008-11-28 20:11:17 +00:00
parent 86b75d1617
commit dfbec673a4
9 changed files with 27 additions and 20 deletions

View File

@@ -142,14 +142,14 @@ namespace OpenSim.Region.Environment.Scenes
#region Add/Remove Agent/Avatar
/// <summary>
/// Register the new client with the scene
/// Register the new client with the scene. The client starts off as a child agent - the later agent crossing
/// will promote it to a root agent during login.
/// </summary>
/// <param name="client"></param
/// <param name="child"></param>
public abstract void AddNewClient(IClientAPI client, bool child);
public abstract void AddNewClient(IClientAPI client);
/// <summary>
///
/// Remove a client from the scene
/// </summary>
/// <param name="agentID"></param>
public abstract void RemoveClient(UUID agentID);