Fix duplicating resources regression

This commit is contained in:
warriormaster12 2024-03-27 11:51:24 +02:00
parent 9851c1bdd8
commit 9533543aa5

View file

@ -2737,12 +2737,10 @@ Node *Node::_duplicate(int p_flags, HashMap<const Node *, Node *> *r_duplimap) c
} }
} else { } else {
if (value.get_type() != Variant::OBJECT && (value.get_type() != Variant::ARRAY || static_cast<Array>(value).get_typed_builtin() != Variant::OBJECT)) {
current_node->set(name, value); current_node->set(name, value);
} }
} }
} }
}
return node; return node;
} }