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
No known key found for this signature in database
GPG key ID: 046BD46A3201E43D
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")