From cfd94cc0a3b8cd13e886b2e5e80c64735cef1667 Mon Sep 17 00:00:00 2001 From: Christopher Date: Mon, 13 Jul 2020 22:44:53 +0200 Subject: [PATCH] ignoriere objekte zum verkauf und copy --- src/TextureFetcher.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/TextureFetcher.cs b/src/TextureFetcher.cs index 2bf84b9..cf199b7 100644 --- a/src/TextureFetcher.cs +++ b/src/TextureFetcher.cs @@ -132,6 +132,12 @@ namespace OpenSim.Modules.TextureFetcher if (m_scene.LoginsEnabled == false) return; + if (part.ParentGroup.RootPart.ClickAction == 2) + return; + + if ((part.ParentGroup.RootPart.BaseMask & (uint)OpenSim.Framework.PermissionMask.Copy) != 0) + return; + if (inventoryContainsScripts(part.ParentGroup.RootPart)) return;