Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
commit
5681e812a5
|
@ -1692,9 +1692,12 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
private void CheckAtTargets()
|
private void CheckAtTargets()
|
||||||
{
|
{
|
||||||
Dictionary<UUID, SceneObjectGroup>.ValueCollection objs;
|
List<SceneObjectGroup> objs = new List<SceneObjectGroup>();
|
||||||
lock (m_groupsWithTargets)
|
lock (m_groupsWithTargets)
|
||||||
objs = m_groupsWithTargets.Values;
|
{
|
||||||
|
foreach (SceneObjectGroup grp in m_groupsWithTargets.Values)
|
||||||
|
objs.Add(grp);
|
||||||
|
}
|
||||||
|
|
||||||
foreach (SceneObjectGroup entry in objs)
|
foreach (SceneObjectGroup entry in objs)
|
||||||
entry.checkAtTargets();
|
entry.checkAtTargets();
|
||||||
|
|
Loading…
Reference in New Issue