From 4412c1d989fd49479b274c05972a2f66487dd1a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20J=2E=20Est=C3=A9banez?= Date: Thu, 1 Jun 2023 22:34:49 +0200 Subject: [PATCH] Fix external resource ids lost --- scene/resources/resource_format_text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/resources/resource_format_text.cpp b/scene/resources/resource_format_text.cpp index 4807af3c272..c3628125b4a 100644 --- a/scene/resources/resource_format_text.cpp +++ b/scene/resources/resource_format_text.cpp @@ -168,7 +168,7 @@ Error ResourceLoaderText::_parse_ext_resource(VariantParser::Stream *p_stream, R } else { #ifdef TOOLS_ENABLED //remember ID for saving - res->set_id_for_path(path, id); + res->set_id_for_path(local_path, id); #endif r_res = res; }