Fixed a region split synchronization bug

This commit is contained in:
Johan Berntsson
2008-03-04 09:39:58 +00:00
parent fe56c18795
commit c78eebfdfc
2 changed files with 35 additions and 30 deletions

View File

@@ -158,6 +158,17 @@ namespace OpenSim.Framework
return circuits.ToArray();
}
public List<uint> GetAllCircuitCodes()
{
List<uint> circuits;
lock (m_clients)
{
circuits = new List<uint>(m_clients.Keys);
}
return circuits;
}
public void ViewerEffectHandler(IClientAPI sender, ViewerEffectPacket.EffectBlock[] effectBlock)
{