We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b1b873a + e4bd611 commit 347e51eCopy full SHA for 347e51e
core/variant/dictionary.cpp
@@ -225,7 +225,7 @@ bool Dictionary::has_all(const Array &p_keys) const {
225
for (int i = 0; i < p_keys.size(); i++) {
226
Variant key = p_keys[i];
227
ERR_FAIL_COND_V(!_p->typed_key.validate(key, "use 'has_all'"), false);
228
- if (!has(key)) {
+ if (!_p->variant_map.has(key)) {
229
return false;
230
}
231
0 commit comments