Merge pull request #93672 from KoBeWi/duplicarray
Fix duplicating nodes with Array properties
This commit is contained in:
commit
17a0a080e7
1 changed files with 1 additions and 2 deletions
|
@ -2907,9 +2907,8 @@ void Node::_duplicate_properties(const Node *p_root, const Node *p_original, Nod
|
||||||
arr[i] = p_copy->get_node_or_null(p_original->get_path_to(property_node));
|
arr[i] = p_copy->get_node_or_null(p_original->get_path_to(property_node));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
value = arr;
|
|
||||||
p_copy->set(name, value);
|
|
||||||
}
|
}
|
||||||
|
p_copy->set(name, arr);
|
||||||
} else {
|
} else {
|
||||||
p_copy->set(name, value);
|
p_copy->set(name, value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue