mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 15:22:42 +02:00
whoops now it's working
This commit is contained in:
parent
a58e188b5c
commit
58e84acd5f
1 changed files with 2 additions and 1 deletions
|
@ -33,6 +33,7 @@
|
|||
#include <Extents.h>
|
||||
#include <VariantMapToScriptValue.h>
|
||||
#include <ScriptValue.h>
|
||||
#include <PhysicsHelpers.h>
|
||||
|
||||
#include "EntitiesLogging.h"
|
||||
#include "EntityItem.h"
|
||||
|
@ -1567,7 +1568,7 @@ ScriptValue EntityItemProperties::copyToScriptValue(ScriptEngine* engine, bool s
|
|||
}
|
||||
|
||||
auto nodeList = DependencyManager::get<NodeList>();
|
||||
bool isMyOwnAvatarEntity = _entityHostType == entity::HostType::AVATAR && _owningAvatarID == AVATAR_SELF_ID;
|
||||
bool isMyOwnAvatarEntity = _entityHostType == entity::HostType::AVATAR && (_owningAvatarID == AVATAR_SELF_ID || _owningAvatarID == Physics::getSessionUUID());
|
||||
if (_idSet && (!pseudoPropertyFlagsActive || pseudoPropertyFlags.test(EntityPseudoPropertyFlag::ID))) {
|
||||
COPY_PROPERTY_TO_QSCRIPTVALUE_GETTER_ALWAYS(id, _id.toString());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue