mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 12:04:18 +02:00
Merge pull request #3154 from AndrewMeadows/bispinor
bug fix: bad logic for early exit in AvatarManager::updateOtherAvatars()
This commit is contained in:
commit
d9acdd6f6e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue