summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2010-07-08 15:02:45 -0400
committerLoren Shih <seraph@lindenlab.com>2010-07-08 15:02:45 -0400
commitb67009415d1570fd7add3d5ac63e66d676f99984 (patch)
treebb0b29c3512bda2c5c988b0cd044f670c7d5df03
parent6e9bf1c5dc62dcad90ab217647791fab56633f28 (diff)
EXT-8269 FIXED "Copy and Wear" from in-world object doesn't wear bodyparts
EXT-8139 FIXED "Copy and wear" when unboxing an outfit defaults to "add" instead of "replace items" Copy&Wear now takes off all inventory item before wearing new outfit.
-rw-r--r--indra/newview/llinventorybridge.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index 9e7224d9b8..3669a7b5dd 100644
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -2054,7 +2054,7 @@ void LLInventoryCopyAndWearObserver::changed(U32 mask)
mContentsCount)
{
gInventory.removeObserver(this);
- LLAppearanceMgr::instance().wearInventoryCategory(category, FALSE, TRUE);
+ LLAppearanceMgr::instance().wearInventoryCategory(category, FALSE, FALSE);
delete this;
}
}