aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorMelanie2012-08-14 02:34:03 +0100
committerMelanie2012-08-14 02:34:03 +0100
commit9b014a71679b6697954eb446be9f3d7c2e0a61b9 (patch)
treea454037938403aa76339b021dab93af98fab1bf2 /OpenSim/Services/Interfaces
parentMerge branch 'avination' into ubitwork (diff)
parentMerge branch 'master' into careminster (diff)
downloadopensim-SC_OLD-9b014a71679b6697954eb446be9f3d7c2e0a61b9.zip
opensim-SC_OLD-9b014a71679b6697954eb446be9f3d7c2e0a61b9.tar.gz
opensim-SC_OLD-9b014a71679b6697954eb446be9f3d7c2e0a61b9.tar.bz2
opensim-SC_OLD-9b014a71679b6697954eb446be9f3d7c2e0a61b9.tar.xz
Merge branch 'careminster' into avination
Conflicts: OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/IAvatarService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IAvatarService.cs b/OpenSim/Services/Interfaces/IAvatarService.cs
index 8412c35..0caa521 100644
--- a/OpenSim/Services/Interfaces/IAvatarService.cs
+++ b/OpenSim/Services/Interfaces/IAvatarService.cs
@@ -182,7 +182,8 @@ namespace OpenSim.Services.Interfaces
182 List<AvatarAttachment> attachments = appearance.GetAttachments(); 182 List<AvatarAttachment> attachments = appearance.GetAttachments();
183 foreach (AvatarAttachment attach in attachments) 183 foreach (AvatarAttachment attach in attachments)
184 { 184 {
185 Data["_ap_" + attach.AttachPoint] = attach.ItemID.ToString(); 185 if (attach.ItemID != UUID.Zero)
186 Data["_ap_" + attach.AttachPoint] = attach.ItemID.ToString();
186 } 187 }
187 } 188 }
188 189