mirror of
https://github.com/godotengine/godot.git
synced 2024-11-24 13:12:42 +00:00
Merge pull request #96864 from KoBeWi/dictionerrory
Fix `Dictionary.merge()` type validation
This commit is contained in:
commit
60ffa9645a
@ -261,7 +261,7 @@ void Dictionary::merge(const Dictionary &p_dictionary, bool p_overwrite) {
|
||||
Variant key = E.key;
|
||||
Variant value = E.value;
|
||||
ERR_FAIL_COND(!_p->typed_key.validate(key, "merge"));
|
||||
ERR_FAIL_COND(!_p->typed_key.validate(value, "merge"));
|
||||
ERR_FAIL_COND(!_p->typed_value.validate(value, "merge"));
|
||||
if (p_overwrite || !has(key)) {
|
||||
operator[](key) = value;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user