* 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

@@ -773,7 +773,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
m_clientPingTimer.Elapsed += CheckClientConnectivity;
m_clientPingTimer.Enabled = true;
m_scene.AddNewClient(this, true);
m_scene.AddNewClient(this);
RefreshGroupMembership();
}

View File

@@ -51,7 +51,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
public override void Update() {}
public override void LoadWorldMap() {}
public override void AddNewClient(IClientAPI client, bool child)
public override void AddNewClient(IClientAPI client)
{
client.OnObjectName += RecordObjectNameCall;
}