Merge pull request #40485 from Rubonnek/fix-nowarn-deferred-call

Show errors on Object.call_deferred
This commit is contained in:
Rémi Verschelde 2020-07-25 12:37:20 +02:00 committed by GitHub
commit 46831b40e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ Variant Object::_call_deferred_bind(const Variant **p_args, int p_argcount, Call
StringName method = *p_args[0];
MessageQueue::get_singleton()->push_call(get_instance_id(), method, &p_args[1], p_argcount - 1);
MessageQueue::get_singleton()->push_call(get_instance_id(), method, &p_args[1], p_argcount - 1, true);
return Variant();
}