mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 12:04:18 +02:00
don't update avatar entities if the avatars ID is AVATAR_SELF_ID
This commit is contained in:
parent
8a95920c31
commit
e4db09fef8
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