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

Show errors on Object.call_deferred

(cherry picked from commit 1cd02ef600)
This commit is contained in:
Wilson E. Alvarez
2020-07-18 03:11:07 -04:00
committed by Rémi Verschelde
parent 508388a9fd
commit 993a421333

View File

@@ -695,7 +695,7 @@ Variant Object::_call_deferred_bind(const Variant **p_args, int p_argcount, Vari
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();
}