formatting

integration
SignpostMarv 2012-09-01 02:20:07 +01:00 committed by Justin Clark-Casey (justincc)
parent 663bfbb372
commit 8d431c6359
1 changed files with 6 additions and 6 deletions

View File

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