diff options
author | Don Kjer <don@lindenlab.com> | 2013-02-15 21:30:56 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2013-02-15 21:30:56 +0000 |
commit | e34d93e29eee07843476aed7db46b178a3462e95 (patch) | |
tree | 9aaeaa8393fdca37da23c7fa1e54e4ee6f11ac66 /indra/newview | |
parent | 741821eb6a8717896307da44b1b8e7078a865fff (diff) |
Fix to allow horde bots to render other avatars in the area
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llvoavatar.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index c654d9ea64..3681040acc 100755 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -1870,7 +1870,8 @@ void LLVOAvatar::idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time) return; } - if (!(gPipeline.hasRenderType(LLPipeline::RENDER_TYPE_AVATAR))) + if (!(gPipeline.hasRenderType(LLPipeline::RENDER_TYPE_AVATAR)) + && !(gSavedSettings.getBOOL("DisableAllRenderTypes"))) { return; } |