diff options
author | simon <none@none> | 2013-05-09 11:10:13 -0700 |
---|---|---|
committer | simon <none@none> | 2013-05-09 11:10:13 -0700 |
commit | cd8e0b92e1c8f9f8544b1011e61c21c7789b93b7 (patch) | |
tree | f0c8955cdb08b85092f4d98d2c3e77702a4cbabc | |
parent | 2a59fef6beff7144085ea98ede4a3b4300248d7f (diff) |
Tweak to ensure more avatar rendering info is sent to the simulator
-rw-r--r-- | indra/newview/llavatarrenderinfoaccountant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llavatarrenderinfoaccountant.cpp b/indra/newview/llavatarrenderinfoaccountant.cpp index 54144677f4..da4b6cf806 100644 --- a/indra/newview/llavatarrenderinfoaccountant.cpp +++ b/indra/newview/llavatarrenderinfoaccountant.cpp @@ -249,7 +249,7 @@ void LLAvatarRenderInfoAccountant::sendRenderInfoToRegion(LLViewerRegion * regio { LLVOAvatar* avatar = dynamic_cast<LLVOAvatar*>(*iter); if (avatar && - avatar->getRezzedStatus() == 2 && // Fully rezzed + avatar->getRezzedStatus() >= 2 && // Mostly rezzed (maybe without baked textures downloaded) !avatar->isDead() && // Not dead yet avatar->getObjectHost() == regionp->getHost()) // Ensure it's on the same region { |