Skip to content

Commit

Permalink
fix: 🐛 wrong whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
KANAjetzt committed Mar 25, 2023
1 parent c6f3a75 commit ff8e9d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/mod_loader/mod_loader.gd
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ func _init() -> void:
var mod: ModData = mod_data[dir_name]
if not mod.is_loadable:
continue
var is_circular := _check_dependencies(mod)
if is_circular:
return
var is_circular := _check_dependencies(mod)
if is_circular:
return

# Sort mod_load_order by the importance score of the mod
mod_load_order = _get_load_order(mod_data.values())
Expand Down

0 comments on commit ff8e9d8

Please sign in to comment.