From 0367711e936f891b8e652b41f913ee05a4987564 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Wed, 18 Mar 2015 02:10:05 -0400 Subject: [PATCH] Fix ascent tag coloring borkage, woops. --- indra/newview/llvoavatar.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index c01938d70..8883a83af 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -950,7 +950,8 @@ bool SHClientTagMgr::getClientColor(const LLVOAvatar* pAvatar, bool check_status if (check_status && ascent_use_status_colors && !pAvatar->isSelf()) { - getColorFor(id, pAvatar->getRegion(), color); + if (getColorFor(id, pAvatar->getRegion(), color, false)) + return true; } std::map::const_iterator it; LLSD tag;