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

Fix two signal errors

Update
This commit is contained in:
nathanwfranke
2020-02-19 15:22:34 -06:00
parent 5ace0beeaa
commit a31bc1b0ba
4 changed files with 3 additions and 8 deletions

View File

@@ -917,7 +917,6 @@ Variant Object::call(const StringName &p_method, const Variant **p_args, int p_a
MethodBind *method = ClassDB::get_method(get_class_name(), p_method);
if (method) {
ret = method->call(this, p_args, p_argcount, r_error);
} else {
r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;