diff options
author | Melanie | 2013-03-06 00:15:54 +0000 |
---|---|---|
committer | Melanie | 2013-03-06 00:15:54 +0000 |
commit | 339d8ef2a657dd08bc6328da6e285b8550d05a74 (patch) | |
tree | 612080502d4da19051a2fcc8dfb7ff26a90fbfa7 /OpenSim/Region/Framework | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Limit each attachment point to 5 items as per spec (diff) | |
download | opensim-SC-339d8ef2a657dd08bc6328da6e285b8550d05a74.zip opensim-SC-339d8ef2a657dd08bc6328da6e285b8550d05a74.tar.gz opensim-SC-339d8ef2a657dd08bc6328da6e285b8550d05a74.tar.bz2 opensim-SC-339d8ef2a657dd08bc6328da6e285b8550d05a74.tar.xz |
Merge branch 'avination' into careminster
Conflicts:
OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs index d781eae..eaaf7a3 100644 --- a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs | |||
@@ -84,7 +84,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
84 | /// <param name="AttachmentPt"></param> | 84 | /// <param name="AttachmentPt"></param> |
85 | /// <param name="silent"></param> | 85 | /// <param name="silent"></param> |
86 | /// <returns>true if the object was successfully attached, false otherwise</returns> | 86 | /// <returns>true if the object was successfully attached, false otherwise</returns> |
87 | bool AttachObject(IScenePresence sp, SceneObjectGroup grp, uint AttachmentPt, bool silent, bool useAttachmentInfo, bool temp); | 87 | bool AttachObject(IScenePresence sp, SceneObjectGroup grp, uint AttachmentPt, bool silent, bool useAttachmentInfo, bool temp, bool append); |
88 | 88 | ||
89 | /// <summary> | 89 | /// <summary> |
90 | /// Rez an attachment from user inventory and change inventory status to match. | 90 | /// Rez an attachment from user inventory and change inventory status to match. |
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index d459b56..92d0aff 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -2863,7 +2863,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2863 | RootPrim.RemFlag(PrimFlags.TemporaryOnRez); | 2863 | RootPrim.RemFlag(PrimFlags.TemporaryOnRez); |
2864 | 2864 | ||
2865 | if (AttachmentsModule != null) | 2865 | if (AttachmentsModule != null) |
2866 | AttachmentsModule.AttachObject(sp, grp, 0, false, false, false); | 2866 | AttachmentsModule.AttachObject(sp, grp, 0, false, false, false, true); |
2867 | } | 2867 | } |
2868 | else | 2868 | else |
2869 | { | 2869 | { |