* Added and removed debug information relating to client connections

* Minor client fixes
* Added the ability for a client to login without a UserProfile, allowing certain alternate clients to connect to the region.
This commit is contained in:
Adam Frisby
2008-11-18 00:47:30 +00:00
parent 6fd8960064
commit 434afaf717
6 changed files with 13 additions and 6 deletions

View File

@@ -49,8 +49,7 @@ namespace OpenSim.Framework
public void ForEachClient(ForEachClientDelegate whatToDo)
{
// Wasteful, I know
IClientAPI[] LocalClients = new IClientAPI[0];
IClientAPI[] LocalClients;
lock (m_clients)
{
LocalClients = new IClientAPI[m_clients.Count];