You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
GDScript: Fix issues with typed arrays
This commit is contained in:
@@ -190,7 +190,7 @@ public:
|
||||
case SCRIPT:
|
||||
return script_type == p_other.script_type;
|
||||
case CLASS:
|
||||
return class_type == p_other.class_type;
|
||||
return class_type == p_other.class_type || class_type->fqcn == p_other.class_type->fqcn;
|
||||
case RESOLVING:
|
||||
case UNRESOLVED:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user