diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-04-02 17:32:29 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-04-02 17:32:29 +0300 |
commit | eb6a7cde9d08215f18b9b9c707f39f73b60403a8 (patch) | |
tree | 1901e23c5075d4a16c837089f7d7988266b2bffc /indra | |
parent | 8b0c77634b97847209fad3a009c3a50ff6cf49f6 (diff) |
SL-10510 Allow copy of worn items
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 938adf8a2a..5b12b39fca 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; |