WIP - working on byte order in server messages.

This commit is contained in:
Nissim Hadar 2017-10-03 21:39:41 -07:00
parent 4019c3bc10
commit 75509b9ecb

View file

@ -210,13 +210,15 @@ EntityPropertyFlags ZoneEntityItem::getEntityProperties(EncodeBitstreamParams& p
withReadLock([&] {
requestedProperties += _skyboxProperties.getEntityProperties(params);
});
withReadLock([&] {
requestedProperties += _hazeProperties.getEntityProperties(params);
});
requestedProperties += PROP_FLYING_ALLOWED;
requestedProperties += PROP_GHOSTING_ALLOWED;
requestedProperties += PROP_FILTER_URL;
requestedProperties += PROP_HAZE_MODE;
withReadLock([&] {
requestedProperties += _hazeProperties.getEntityProperties(params);
});
return requestedProperties;
}