diff options
author | Melanie | 2012-08-14 02:11:13 +0100 |
---|---|---|
committer | Melanie | 2012-08-14 02:11:13 +0100 |
commit | 053e7279ca5d9be8f2ae2f79d0a2c74ab056f147 (patch) | |
tree | 772fd824cbbe5a6bc594875ac3ee03c00115cef5 /OpenSim/Services/Interfaces | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Implement the temp attachments. UNTESTED (diff) | |
download | opensim-SC-053e7279ca5d9be8f2ae2f79d0a2c74ab056f147.zip opensim-SC-053e7279ca5d9be8f2ae2f79d0a2c74ab056f147.tar.gz opensim-SC-053e7279ca5d9be8f2ae2f79d0a2c74ab056f147.tar.bz2 opensim-SC-053e7279ca5d9be8f2ae2f79d0a2c74ab056f147.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r-- | OpenSim/Services/Interfaces/IAvatarService.cs | 3 |
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 | ||