1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

GDScript: Fix Callable call error text

This commit is contained in:
Danil Alexeev
2025-05-02 18:22:49 +03:00
parent 1cf573f44d
commit 2b30f23595
7 changed files with 48 additions and 15 deletions

View File

@@ -55,7 +55,7 @@ String GDScriptUtilityCallable::get_as_text() const {
scope = "@GDScript";
break;
}
return vformat("%s::%s (Callable)", scope, function_name);
return vformat("%s::%s", scope, function_name);
}
CallableCustom::CompareEqualFunc GDScriptUtilityCallable::get_compare_equal_func() const {