Skip to content

Commit d7992d9

Browse files
before _check_dependencies: Ignore mods that aren't loadable
1 parent 5334582 commit d7992d9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

loader/mod_loader.gd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ func _init():
8686

8787
# run dependency check after loading meta_data
8888
for mod_id in mod_data:
89+
if(!mod_data[mod_id].is_loadable):
90+
continue
8991
_check_dependencies(mod_id, mod_data[mod_id].meta_data.dependencies)
9092

9193
# Sort mod_load_order by the importance score of the mod

0 commit comments

Comments
 (0)