diff options
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IScenePresence.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScenePresence.cs b/OpenSim/Region/Framework/Interfaces/IScenePresence.cs index b07c821..788b36f 100644 --- a/OpenSim/Region/Framework/Interfaces/IScenePresence.cs +++ b/OpenSim/Region/Framework/Interfaces/IScenePresence.cs | |||
@@ -58,10 +58,13 @@ namespace OpenSim.Region.Framework.Interfaces | |||
58 | /// <summary> | 58 | /// <summary> |
59 | /// The scene objects attached to this avatar. | 59 | /// The scene objects attached to this avatar. |
60 | /// </summary> | 60 | /// </summary> |
61 | /// <returns> | ||
62 | /// A copy of the list. | ||
63 | /// </returns> | ||
61 | /// <remarks> | 64 | /// <remarks> |
62 | /// Do not change this list directly - use methods such as | 65 | /// Do not change this list directly - use methods such as |
63 | /// AddAttachment() and RemoveAttachment(). Lock this list when performing any read operations upon it. | 66 | /// AddAttachment() and RemoveAttachment(). |
64 | /// </remarks> | 67 | /// </remarks> |
65 | List<SceneObjectGroup> Attachments { get; } | 68 | List<SceneObjectGroup> GetAttachments(); |
66 | } | 69 | } |
67 | } \ No newline at end of file | 70 | } \ No newline at end of file |