mirror of
https://github.com/overte-org/overte.git
synced 2025-07-25 11:52:06 +02:00
Merge pull request #12421 from druiz17/RC64
don't update avatar entities if the avatars ID is AVATAR_SELF_ID
This commit is contained in:
commit
bc8ea1be17
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ void Avatar::updateAvatarEntities() {
|
|||
return;
|
||||
}
|
||||
|
||||
if (getID() == QUuid()) {
|
||||
if (getID() == QUuid() || getID() == AVATAR_SELF_ID) {
|
||||
return; // wait until MyAvatar gets an ID before doing this.
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue