diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-01-13 22:59:05 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-01-13 23:33:26 +0200 |
commit | 8ff47309a119fbad799b16e88a374046c90ad3e6 (patch) | |
tree | 960896a16366f7a294368921d8f38b7ecd106425 /indra/newview/llviewerobjectlist.cpp | |
parent | 84ea3695835ce8991897642a627799d8afd631e7 (diff) |
SL-16644 OUT_FULL updates should reset cache
A revert of SH-4631
Diffstat (limited to 'indra/newview/llviewerobjectlist.cpp')
-rw-r--r-- | indra/newview/llviewerobjectlist.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llviewerobjectlist.cpp b/indra/newview/llviewerobjectlist.cpp index 63e48d1dd0..fc96684880 100644 --- a/indra/newview/llviewerobjectlist.cpp +++ b/indra/newview/llviewerobjectlist.cpp @@ -566,7 +566,8 @@ void LLViewerObjectList::processObjectUpdate(LLMessageSystem *mesgsys, if(update_cache) { - objectp = regionp->updateCacheEntry(local_id, objectp, update_type); + //update object cache if the object receives a full-update or terse update + objectp = regionp->updateCacheEntry(local_id, objectp); } // This looks like it will break if the local_id of the object doesn't change |