mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 01:12:48 +02:00
Merge pull request #14549 from birarda/bug/no-initial-send
fix for initial send of non-instanced trait
This commit is contained in:
commit
e3e400c86f
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