diff --git a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs index 401f4b7aa4..5a89145491 100755 --- a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs @@ -236,7 +236,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments ct.AddRow("Attachment Name", attachmentObject.Name); ct.AddRow("Local ID", attachmentObject.LocalId); ct.AddRow("Item ID", attachmentObject.UUID); - ct.AddRow("From Item ID", attachmentObject.FromItemID); + if(attachmentObject.FromItemID == UUID.Zero) + ct.AddRow("Temporary", ""); + else + ct.AddRow("From Item ID", attachmentObject.FromItemID); ct.AddRow("Attach Point", ((AttachmentPoint)attachmentObject.AttachmentPoint)); ct.AddRow("Prims", attachmentObject.PrimCount); ct.AddRow("Position", attachmentObject.RootPart.AttachedPos + "\n"); diff --git a/bin/OpenMetaverse.Rendering.Meshmerizer.dll b/bin/OpenMetaverse.Rendering.Meshmerizer.dll index 634eff199f..e30e478935 100755 Binary files a/bin/OpenMetaverse.Rendering.Meshmerizer.dll and b/bin/OpenMetaverse.Rendering.Meshmerizer.dll differ diff --git a/bin/OpenMetaverse.StructuredData.dll b/bin/OpenMetaverse.StructuredData.dll index 176f08e6e9..8ae515ede1 100755 Binary files a/bin/OpenMetaverse.StructuredData.dll and b/bin/OpenMetaverse.StructuredData.dll differ diff --git a/bin/OpenMetaverse.dll b/bin/OpenMetaverse.dll index 518a8f4543..36d4c2d697 100755 Binary files a/bin/OpenMetaverse.dll and b/bin/OpenMetaverse.dll differ diff --git a/bin/OpenMetaverseTypes.dll b/bin/OpenMetaverseTypes.dll index 65af6fb83c..357a37e5e4 100755 Binary files a/bin/OpenMetaverseTypes.dll and b/bin/OpenMetaverseTypes.dll differ