mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
parent
4b399034aa
commit
b5bbedb45a
1 changed files with 4 additions and 0 deletions
|
|
@ -6021,7 +6021,11 @@ bool GDScriptParser::_is_type_compatible(const DataType &p_container, const Data
|
|||
}
|
||||
|
||||
GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
|
||||
#ifdef DEBUG_ENABLED
|
||||
if (p_node->get_datatype().has_type && p_node->type != Node::TYPE_ARRAY && p_node->type != Node::TYPE_DICTIONARY) {
|
||||
#else
|
||||
if (p_node->get_datatype().has_type) {
|
||||
#endif
|
||||
return p_node->get_datatype();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue