mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05:00
Fix recognition of resource extensions.
Also removes a related debug print.
This commit is contained in:
@@ -1196,7 +1196,7 @@ void ClassDB::get_extensions_for_type(const StringName &p_class, List<String> *p
|
||||
|
||||
while ((K = resource_base_extensions.next(K))) {
|
||||
StringName cmp = resource_base_extensions[*K];
|
||||
if (is_parent_class(p_class, cmp))
|
||||
if (is_parent_class(p_class, cmp) || is_parent_class(cmp, p_class))
|
||||
p_extensions->push_back(*K);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user