Skip to content

Commit 7bd242e

Browse files
authored
Fix wrong Typing on sorting Subsystems. (#2476)
1 parent 36b6e63 commit 7bd242e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/dialogic/Core/DialogicUtil.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ static func _update_autoload_subsystem_access() -> void:
8888
return a.name < b.name
8989
)
9090

91-
for subsystem: DialogicSubsystem in subsystems_sorted:
91+
for subsystem: Dictionary in subsystems_sorted:
9292
new_subsystem_access_list += '\nvar {name} := preload("{script}").new():\n\tget: return get_subsystem("{name}")\n'.format(subsystem)
9393

9494
new_subsystem_access_list += "\n#endregion"

0 commit comments

Comments
 (0)