Merge pull request #3154 from AndrewMeadows/bispinor

bug fix: bad logic for early exit in AvatarManager::updateOtherAvatars()
This commit is contained in:
Clément Brisset 2014-07-10 11:00:48 -07:00
commit d9acdd6f6e

View file

@ -41,7 +41,7 @@ void AvatarManager::init() {
}
void AvatarManager::updateOtherAvatars(float deltaTime) {
if (_avatarHash.size() > 1) {
if (_avatarHash.size() < 2) {
return;
}
bool showWarnings = Menu::getInstance()->isOptionChecked(MenuOption::PipelineWarnings);