mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 12:12:28 +00:00
[MP] Fix delta variables index decoding.
This commit is contained in:
parent
3710f06929
commit
91004df875
@ -433,11 +433,10 @@ List<NodePath> MultiplayerSynchronizer::get_delta_properties(uint64_t p_indexes)
|
||||
const List<NodePath> watch_props = replication_config->get_watch_properties();
|
||||
int idx = 0;
|
||||
for (const NodePath &prop : watch_props) {
|
||||
if ((p_indexes & (1ULL << idx)) == 0) {
|
||||
if ((p_indexes & (1ULL << idx++)) == 0) {
|
||||
continue;
|
||||
}
|
||||
out.push_back(prop);
|
||||
idx++;
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user