diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2018-02-06 17:36:51 +0000 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2018-02-06 17:36:51 +0000 |
commit | 3b9da6dc2fad17ecac782dce02ccde0e7e020aac (patch) | |
tree | 5807a3d2b45d3a110d9352f387d3dd119cd939cc /indra/newview/llappearancemgr.cpp | |
parent | ca8fe2f23141b42b87e2a8530aa8908d9b6bcde4 (diff) |
MAINT-8004 Make replace work regardless of current attachments
Diffstat (limited to 'indra/newview/llappearancemgr.cpp')
-rw-r--r-- | indra/newview/llappearancemgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 0fb811a386..c0f88ef704 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -1919,7 +1919,7 @@ bool LLAppearanceMgr::getCanReplaceCOF(const LLUUID& outfit_cat_id) } // Check whether it's the base outfit. - if (outfit_cat_id.isNull() || outfit_cat_id == getBaseOutfitUUID()) + if (outfit_cat_id.isNull()) { return false; } |