From eb6a7cde9d08215f18b9b9c707f39f73b60403a8 Mon Sep 17 00:00:00 2001 From: andreykproductengine <andreykproductengine@lindenlab.com> Date: Tue, 2 Apr 2019 17:32:29 +0300 Subject: [PATCH] SL-10510 Allow copy of worn items --- indra/newview/llinventorybridge.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 938adf8a2a9..5b12b39fca5 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -2101,12 +2101,6 @@ BOOL LLItemBridge::isItemCopyable() const LLViewerInventoryItem* item = getItem(); if (item) { - // Can't copy worn objects. DEV-15183 - if(get_is_item_worn(mUUID)) - { - return FALSE; - } - return item->getPermissions().allowCopyBy(gAgent.getID()) || gSavedSettings.getBOOL("InventoryLinking"); } return FALSE; -- GitLab