diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-07-08 20:04:12 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-07-08 20:04:12 +0800 |
commit | 2df2f6fcae489b7e5ad90033acf2f7ee82868722 (patch) | |
tree | 12437153294a0937a65737a3798bc2ebd979ed6f | |
parent | a874360de2261be937d21bc01d706c141067df93 (diff) |
Correct commit bd6c39192b0f29be1fbbbbbc257cd0351e505afb
-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 ee7af8692f..504582f2d7 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -4160,7 +4160,7 @@ void LLAppearanceMgr::removeItemsFromAvatar(const uuid_vec_t& ids_to_remove, nul for (uuid_vec_t::const_iterator it = ids_to_remove.begin(); it != ids_to_remove.end(); ++it) { const LLUUID& id_to_remove = *it; - if (gAgentAvatarp->getWornAttachment(id_to_remove)->isLocked()) return; + if (gAgentAvatarp->getWornAttachment(id_to_remove)->isLocked()) continue; const LLUUID& linked_item_id = gInventory.getLinkedItemID(id_to_remove); LLViewerInventoryItem *item = gInventory.getItem(linked_item_id); if (item && item->getType() == LLAssetType::AT_OBJECT) |