summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_analyzer.cpp
diff options
context:
space:
mode:
authorYuri Rubinsky <chaosus89@gmail.com>2022-12-29 09:31:49 +0300
committerGitHub <noreply@github.com>2022-12-29 09:31:49 +0300
commita75493091823020d858fabadbfa5994da0d658cb (patch)
tree1047c5cbab602934307f9f45803c310c1946f1f8 /modules/gdscript/gdscript_analyzer.cpp
parent7e1bd3f95a10acf60e07a8a6518cc80bfee6fbbf (diff)
parentf67aa3e46d1f100cc6788353bf6c50f2175250e9 (diff)
downloadredot-engine-a75493091823020d858fabadbfa5994da0d658cb.tar.gz
Merge pull request #70642 from vonagam/fix-constructor-call-type
Fixes https://github.com/godotengine/godot/issues/70605
Diffstat (limited to 'modules/gdscript/gdscript_analyzer.cpp')
-rw-r--r--modules/gdscript/gdscript_analyzer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.cpp b/modules/gdscript/gdscript_analyzer.cpp
index fc2e6e94f3..9f8d4e4f7e 100644
--- a/modules/gdscript/gdscript_analyzer.cpp
+++ b/modules/gdscript/gdscript_analyzer.cpp
@@ -4174,7 +4174,7 @@ bool GDScriptAnalyzer::get_function_signature(GDScriptParser::Node *p_source, bo
r_default_arg_count++;
}
}
- r_return_type = found_function->get_datatype();
+ r_return_type = p_is_constructor ? p_base_type : found_function->get_datatype();
r_return_type.is_meta_type = false;
r_return_type.is_coroutine = found_function->is_coroutine;