mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 14:29:03 +02:00
Merge pull request #12419 from druiz17/fix-edit-avatar-entities
Don't update avatar entities of the avatars ID is AVATAR_SELF_ID
This commit is contained in:
commit
24a3eb6e80
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ void Avatar::updateAvatarEntities() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getID() == QUuid()) {
|
if (getID() == QUuid() || getID() == AVATAR_SELF_ID) {
|
||||||
return; // wait until MyAvatar gets an ID before doing this.
|
return; // wait until MyAvatar gets an ID before doing this.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue