1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

GDScript: Don't use validated call for vararg methods

Since they may have runtime type validation, we cannot use the validated
call.
This commit is contained in:
George Marques
2023-02-24 13:42:59 -03:00
parent 6296b46008
commit defa46bfd1
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
func test():
var lambda := func(unused: Variant) -> void:
pass
lambda.call()
lambda.call("something")