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:
Ryan Downe Karpf 2018-02-16 08:41:10 -08:00 committed by GitHub
commit bc8ea1be17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.
}