summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_analyzer.cpp
diff options
context:
space:
mode:
authorDmitrii Maganov <vonagam@gmail.com>2023-02-21 23:00:29 +0200
committerDmitrii Maganov <vonagam@gmail.com>2023-02-21 23:00:29 +0200
commit2a08739f3002a5ef765fd1ab5fec58e062bfa48c (patch)
tree58bef3c40fe516dca2efa3e0dbcf6afbf01bcbac /modules/gdscript/gdscript_analyzer.cpp
parent253396ba3933b3c1b5a91016ac3eb1fb90788a9d (diff)
downloadredot-engine-2a08739f3002a5ef765fd1ab5fec58e062bfa48c.tar.gz
GDScript: Fix error message for unfound type
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 96c35516bc..5ce01a08bf 100644
--- a/modules/gdscript/gdscript_analyzer.cpp
+++ b/modules/gdscript/gdscript_analyzer.cpp
@@ -731,7 +731,7 @@ GDScriptParser::DataType GDScriptAnalyzer::resolve_datatype(GDScriptParser::Type
}
}
if (!result.is_set()) {
- push_error(vformat(R"("%s" was not found in the current scope.)", first), p_type);
+ push_error(vformat(R"(Could not find type "%s" in the current scope.)", first), p_type);
return bad_type;
}