Skip to content

Commit

Permalink
Fix wrong Typing on sorting Subsystems. (#2476)
Browse files Browse the repository at this point in the history
  • Loading branch information
salianifo authored Nov 13, 2024
1 parent 36b6e63 commit 7bd242e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/dialogic/Core/DialogicUtil.gd
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static func _update_autoload_subsystem_access() -> void:
return a.name < b.name
)

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

new_subsystem_access_list += "\n#endregion"
Expand Down

0 comments on commit 7bd242e

Please sign in to comment.