mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 14:29:03 +02:00
WIP - working on byte order in server messages.
This commit is contained in:
parent
4019c3bc10
commit
75509b9ecb
1 changed files with 5 additions and 3 deletions
|
@ -210,13 +210,15 @@ EntityPropertyFlags ZoneEntityItem::getEntityProperties(EncodeBitstreamParams& p
|
||||||
withReadLock([&] {
|
withReadLock([&] {
|
||||||
requestedProperties += _skyboxProperties.getEntityProperties(params);
|
requestedProperties += _skyboxProperties.getEntityProperties(params);
|
||||||
});
|
});
|
||||||
withReadLock([&] {
|
|
||||||
requestedProperties += _hazeProperties.getEntityProperties(params);
|
|
||||||
});
|
|
||||||
requestedProperties += PROP_FLYING_ALLOWED;
|
requestedProperties += PROP_FLYING_ALLOWED;
|
||||||
requestedProperties += PROP_GHOSTING_ALLOWED;
|
requestedProperties += PROP_GHOSTING_ALLOWED;
|
||||||
requestedProperties += PROP_FILTER_URL;
|
requestedProperties += PROP_FILTER_URL;
|
||||||
|
|
||||||
|
requestedProperties += PROP_HAZE_MODE;
|
||||||
|
withReadLock([&] {
|
||||||
|
requestedProperties += _hazeProperties.getEntityProperties(params);
|
||||||
|
});
|
||||||
|
|
||||||
return requestedProperties;
|
return requestedProperties;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue