GDScript: Fix type name on error message for function parameters

This commit is contained in:
George Marques 2020-01-09 15:50:06 -03:00
parent 1aef8bfeb1
commit 76678b2609
No known key found for this signature in database
GPG Key ID: 046BD46A3201E43D

View File

@ -7872,7 +7872,7 @@ void GDScriptParser::_check_function_types(FunctionNode *p_function) {
if (!_is_type_compatible(p_function->argument_types[i], def_type, true)) {
String arg_name = p_function->arguments[i];
_set_error("Value type (" + def_type.to_string() + ") doesn't match the type of argument '" +
arg_name + "' (" + p_function->arguments[i] + ").",
arg_name + "' (" + p_function->argument_types[i].to_string() + ").",
p_function->line);
}
}