Also remove now unnecessary if.

This commit is contained in:
Relintai 2023-09-09 04:01:26 +02:00
parent f592c170d1
commit cf2e53ebc3

View File

@ -1358,11 +1358,9 @@ void SceneTree::_call_input_pause(const StringName &p_group, const CallInputType
Node *n = no_context_nodes[i];
if (n) {
n->call_multilevel(method, (const Variant **)v, 1);
}
}
}
_THREAD_SAFE_LOCK_
call_lock--;