Fix build.

This commit is contained in:
Relintai 2022-09-16 12:27:55 +02:00
parent 8265045030
commit eecd2b11df

View File

@ -1196,7 +1196,7 @@ void SceneTreeDock::_tool_selected(int p_tool, bool p_confirm_override) {
continue;
}
StringName name = node->get_name();
if (new_unique_names.find(name) != -1 || get_tree()->get_edited_scene_root()->get_node_or_null(UNIQUE_NODE_PREFIX + String(name)) != nullptr) {
if (new_unique_names.find(name) != -1 || get_tree()->get_edited_scene_root()->get_node_or_null("%" + String(name)) != nullptr) {
cant_be_set_unique_names.push_back(name);
} else {
new_unique_nodes.push_back(node);