summaryrefslogtreecommitdiff
path: root/indra/newview/pipeline.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2020-04-08 14:40:01 +0100
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2020-04-08 14:40:01 +0100
commit5c7e91f62fb8d76f437a751503c4e40f0c0fedf1 (patch)
treee3e003fe1ee5bdd5d9d225ce12d7efb09c44703e /indra/newview/pipeline.cpp
parentb5b2d253f6306f20b67083258bd143c846c809a9 (diff)
SL-12996 - replace checks of VisualMuteSettings with OverallAppearance
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r--indra/newview/pipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index bec33790bd..bfcc74dc70 100644
--- a/indra/newview/pipeline.cpp
+++ b/indra/newview/pipeline.cpp
@@ -3125,7 +3125,7 @@ void LLPipeline::markVisible(LLDrawable *drawablep, LLCamera& camera)
LLVOAvatar* av = vobj->asAvatar();
if (av && (av->isImpostor()
|| av->isInMuteList()
- || (LLVOAvatar::AV_DO_NOT_RENDER == av->getVisualMuteSettings() && !av->needsImpostorUpdate()) ))
+ || (LLVOAvatar::AOA_NORMAL != av->getOverallAppearance() && !av->needsImpostorUpdate()) ))
{
return;
}