From 9b78eb20c0a7b1907fec67dc2104756f6d2a96d5 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 4 Nov 2016 11:58:52 +0000 Subject: [PATCH] by design HUD objects are private --- .../Shared/Api/Implementation/LSL_Api.cs | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 5f8734758c..ced81ada3e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs @@ -7026,24 +7026,25 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api { m_host.AddScriptLPS(1); - LSL_List AttachmentsList = new LSL_List(); - ScenePresence av = World.GetScenePresence((UUID)id); - string NOT_FOUND = "NOT_FOUND"; - string NOT_ON_REGION = "NOT ON REGION"; + if (av == null || av.IsDeleted) + return new LSL_List("NOT_FOUND"); - if (av == null) - return new LSL_List(NOT_FOUND); - if (av.IsChildAgent) - return new LSL_List(NOT_ON_REGION); + if (av.IsChildAgent || av.IsInTransit) + return new LSL_List("NOT_ON_REGION"); - List AttachmentsKeys; + LSL_List AttachmentsList = new LSL_List(); + List Attachments; - AttachmentsKeys = av.GetAttachments(); + Attachments = av.GetAttachments(); - foreach (SceneObjectGroup AttachmentKey in AttachmentsKeys) - AttachmentsList.Add(new LSL_Key(AttachmentKey.FromItemID.ToString())); + foreach (SceneObjectGroup Attachment in Attachments) + { + if(Attachment.HasPrivateAttachmentPoint) + continue; + AttachmentsList.Add(new LSL_Key(Attachment.UUID.ToString())); + } return AttachmentsList; }