Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
2ea45ee2
Commit
2ea45ee2
authored
10 years ago
by
andreykproductengine
Browse files
Options
Downloads
Patches
Plain Diff
MAINT-4872 FIXED wearables with same asset id are not swapped
parent
a7530cb3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llagentwearables.cpp
+16
-7
16 additions, 7 deletions
indra/newview/llagentwearables.cpp
with
16 additions
and
7 deletions
indra/newview/llagentwearables.cpp
+
16
−
7
View file @
2ea45ee2
...
...
@@ -982,6 +982,7 @@ void LLAgentWearables::setWearableOutfit(const LLInventoryItem::item_array_t& it
S32
matched
=
0
,
mismatched
=
0
;
const
S32
arr_size
=
LLWearableType
::
WT_COUNT
;
S32
type_counts
[
arr_size
];
BOOL
update_inventory
=
FALSE
;
std
::
fill
(
type_counts
,
type_counts
+
arr_size
,
0
);
for
(
S32
i
=
0
;
i
<
count
;
i
++
)
{
...
...
@@ -1009,10 +1010,9 @@ void LLAgentWearables::setWearableOutfit(const LLInventoryItem::item_array_t& it
continue
;
}
//
Don't care about
this case - ordering of wearables with the same asset id has no effect.
//
Update only inventory in
this case - ordering of wearables with the same asset id has no effect.
// Causes the two-alphas error case in MAINT-4158.
// We should actually disallow wearing two wearables with the same asset id.
#if 0
if
(
curr_wearable
->
getName
()
!=
new_item
->
getName
()
||
curr_wearable
->
getItemID
()
!=
new_item
->
getUUID
())
{
...
...
@@ -1020,10 +1020,9 @@ void LLAgentWearables::setWearableOutfit(const LLInventoryItem::item_array_t& it
<<
curr_wearable
->
getName
()
<<
" vs "
<<
new_item
->
getName
()
<<
" item ids "
<<
curr_wearable
->
getItemID
()
<<
" vs "
<<
new_item
->
getUUID
()
<<
LL_ENDL
;
mismatched++
;
update_inventory
=
TRUE
;
continue
;
}
#endif
// If we got here, everything matches.
matched
++
;
}
...
...
@@ -1037,14 +1036,15 @@ void LLAgentWearables::setWearableOutfit(const LLInventoryItem::item_array_t& it
mismatched
++
;
}
}
if
(
mismatched
==
0
)
if
(
mismatched
==
0
&&
!
update_inventory
)
{
LL_DEBUGS
(
"Avatar"
)
<<
"no changes, bailing out"
<<
LL_ENDL
;
mCOFChangeInProgress
=
false
;
return
;
}
// updating inventory
// TODO: Removed check for ensuring that teens don't remove undershirt and underwear. Handle later
// note: shirt is the first non-body part wearable item. Update if wearable order changes.
// This loop should remove all clothing, but not any body parts
...
...
@@ -1085,6 +1085,15 @@ void LLAgentWearables::setWearableOutfit(const LLInventoryItem::item_array_t& it
gInventory
.
notifyObservers
();
if
(
mismatched
==
0
)
{
LL_DEBUGS
(
"Avatar"
)
<<
"inventory updated, wearable assets not changed, bailing out"
<<
LL_ENDL
;
mCOFChangeInProgress
=
false
;
return
;
}
// updating agent avatar
if
(
isAgentAvatarValid
())
{
gAgentAvatarp
->
setCompositeUpdatesEnabled
(
TRUE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment