mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 04:03:59 +02:00
bug fix: bad logic for early exit
This commit is contained in:
parent
21e7833938
commit
fdd9acb477
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