mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 01:12:48 +02:00
fix for initial send of non-instanced trait
This commit is contained in:
parent
55f59a720f
commit
51fd742722
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ void ClientTraitsHandler::sendChangedTraitsToMixer() {
|
|||
// we double check that it is a simple iterator here
|
||||
auto traitType = static_cast<AvatarTraits::TraitType>(std::distance(traitStatusesCopy.simpleCBegin(), simpleIt));
|
||||
|
||||
if (_shouldPerformInitialSend || *simpleIt == Updated) {
|
||||
if (initialSend || *simpleIt == Updated) {
|
||||
if (traitType == AvatarTraits::SkeletonModelURL) {
|
||||
_owningAvatar->packTrait(traitType, *traitsPacketList);
|
||||
|
||||
|
|
Loading…
Reference in a new issue