diff options
author | Melanie | 2013-03-19 01:19:33 +0000 |
---|---|---|
committer | Melanie | 2013-03-19 01:19:33 +0000 |
commit | 566ab7ccf92c607fa06e38700c8094680eea704c (patch) | |
tree | 929770aca41391af0144e593c67e60beecc7af8a /OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | |
parent | Merge branch 'master' into careminster (diff) | |
download | opensim-SC-566ab7ccf92c607fa06e38700c8094680eea704c.zip opensim-SC-566ab7ccf92c607fa06e38700c8094680eea704c.tar.gz opensim-SC-566ab7ccf92c607fa06e38700c8094680eea704c.tar.bz2 opensim-SC-566ab7ccf92c607fa06e38700c8094680eea704c.tar.xz |
Fix merge artefacts
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs index 296f198..c94d152 100644 --- a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | |||
@@ -304,7 +304,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments | |||
304 | if (!Enabled) | 304 | if (!Enabled) |
305 | return false; | 305 | return false; |
306 | 306 | ||
307 | AttachObjectInternal(sp, group, attachmentPt, silent, useAttachData, temp, append); | 307 | return AttachObjectInternal(sp, group, attachmentPt, silent, useAttachData, temp, false, append); |
308 | } | 308 | } |
309 | 309 | ||
310 | /// <summary> | 310 | /// <summary> |
@@ -317,7 +317,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments | |||
317 | /// <param name='silent'></param> | 317 | /// <param name='silent'></param> |
318 | /// <param name='temp'></param> | 318 | /// <param name='temp'></param> |
319 | /// <param name='resumeScripts'>If true then scripts are resumed on the attached object.</param> | 319 | /// <param name='resumeScripts'>If true then scripts are resumed on the attached object.</param> |
320 | private bool AttachObjectInternal(IScenePresence sp, SceneObjectGroup group, uint attachmentPt, bool silent, bool useAttachData, bool temp, bool append) | 320 | private bool AttachObjectInternal(IScenePresence sp, SceneObjectGroup group, uint attachmentPt, bool silent, bool useAttachData, bool temp, bool resumeScripts, bool append) |
321 | { | 321 | { |
322 | // m_log.DebugFormat( | 322 | // m_log.DebugFormat( |
323 | // "[ATTACHMENTS MODULE]: Attaching object {0} {1} to {2} point {3} from ground (silent = {4})", | 323 | // "[ATTACHMENTS MODULE]: Attaching object {0} {1} to {2} point {3} from ground (silent = {4})", |
@@ -917,7 +917,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments | |||
917 | objatt.ResetOwnerChangeFlag(); | 917 | objatt.ResetOwnerChangeFlag(); |
918 | } | 918 | } |
919 | 919 | ||
920 | AttachObjectInternal(sp, objatt, attachmentPt, false, true, false, append); | 920 | AttachObjectInternal(sp, objatt, attachmentPt, false, true, false, true, append); |
921 | } | 921 | } |
922 | catch (Exception e) | 922 | catch (Exception e) |
923 | { | 923 | { |