mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
don't update avatar entities if the avatars ID is AVATAR_SELF_ID
This commit is contained in:
parent
db399a47eb
commit
52f576e6f6
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