diff options
| -rw-r--r-- | indra/newview/llface.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp index b328dd2962..b4f4d52014 100644 --- a/indra/newview/llface.cpp +++ b/indra/newview/llface.cpp @@ -1172,6 +1172,11 @@ bool LLFace::canRenderAsMask()  		return true;  	} +    if (isState(LLFace::RIGGED)) +    { // never auto alpha-mask rigged faces +        return false; +    } +  	const LLTextureEntry* te = getTextureEntry();  	if( !te || !getViewerObject() || !getTexture() )  	{ | 
