From 86de59d60a72e91d135450cccae4e220088a8a4b Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Mon, 6 May 2024 16:43:04 +0200 Subject: [Core] Add `LocalVector::has` for convenience --- editor/multi_node_edit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor/multi_node_edit.h') diff --git a/editor/multi_node_edit.h b/editor/multi_node_edit.h index 000d41c4c1..32fe7402fd 100644 --- a/editor/multi_node_edit.h +++ b/editor/multi_node_edit.h @@ -73,7 +73,7 @@ public: return false; } for (int i = 0; i < get_node_count(); i++) { - if (nodes.find(p_other->get_node(i)) == -1) { + if (!nodes.has(p_other->get_node(i))) { return false; } } -- cgit v1.2.3