formatting

This commit is contained in:
SignpostMarv
2012-09-01 02:20:07 +01:00
committed by Justin Clark-Casey (justincc)
parent 663bfbb372
commit 8d431c6359

View File

@@ -3421,15 +3421,15 @@ namespace OpenSim.Region.Framework.Scenes
if (attachmentPoint >= 0)
{
lock (m_attachments)
{
foreach (SceneObjectGroup so in m_attachments)
lock (m_attachments)
{
if (attachmentPoint == so.AttachmentPoint)
attachments.Add(so);
foreach (SceneObjectGroup so in m_attachments)
{
if (attachmentPoint == so.AttachmentPoint)
attachments.Add(so);
}
}
}
}
return attachments;
}