diff options
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/llgiveinventory.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llgiveinventory.cpp b/indra/newview/llgiveinventory.cpp index 813d2081ce..a9bf8a9a50 100755 --- a/indra/newview/llgiveinventory.cpp +++ b/indra/newview/llgiveinventory.cpp @@ -139,8 +139,10 @@ bool LLGiveInventory::isInventoryGiveAcceptable(const LLInventoryItem* item)  			BOOL copyable = false;  			if (item->getPermissions().allowCopyBy(gAgentID)) copyable = true; -			if (!copyable || get_is_item_worn(item->getUUID())) +			if (!copyable && get_is_item_worn(item->getUUID()))  			{ +				// worn no-copy items can't be transfered, +				// but it is valid to transfer a copy of a worn item  				acceptable = false;  			}  		}  | 
