From 17e03c29d68f450634a8b8dcd2f2a46555d7a3d3 Mon Sep 17 00:00:00 2001 From: rune-scape Date: Thu, 15 Dec 2022 16:46:15 -0500 Subject: [PATCH] Fix preload type regression --- modules/gdscript/gdscript_analyzer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/gdscript/gdscript_analyzer.cpp b/modules/gdscript/gdscript_analyzer.cpp index 9ec53b2b6681..5e2eefff0b7c 100644 --- a/modules/gdscript/gdscript_analyzer.cpp +++ b/modules/gdscript/gdscript_analyzer.cpp @@ -4026,7 +4026,8 @@ GDScriptParser::DataType GDScriptAnalyzer::type_from_variant(const Variant &p_va found = found->get_member(E).m_class; } - result = found->get_datatype(); + result.class_type = found; + result.script_path = ref->get_parser()->script_path; } else { result.kind = GDScriptParser::DataType::SCRIPT; result.native_type = scr->get_instance_base_type();