File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -91,10 +91,6 @@ func _load_mods() -> void:
91
91
else :
92
92
ModLoaderLog .info ("No mods were setup" , LOG_NAME )
93
93
94
- # Set up mod configs. If a mod's JSON file is found, its data gets added
95
- # to mod_data.{dir_name}.config
96
- _load_mod_configs ()
97
-
98
94
# Loop over all loaded mods via their entry in mod_data. Verify that they
99
95
# have all the required files (REQUIRED_MOD_FILES), load their meta data
100
96
# (from their manifest.json file), and verify that the meta JSON has all
@@ -103,6 +99,10 @@ func _load_mods() -> void:
103
99
var mod : ModData = ModLoaderStore .mod_data [dir_name ]
104
100
mod .load_manifest ()
105
101
102
+ # Set up mod configs. If a mod's JSON file is found, its data gets added
103
+ # to mod_data.{dir_name}.config
104
+ _load_mod_configs ()
105
+
106
106
ModLoaderLog .success ("DONE: Loaded all meta data" , LOG_NAME )
107
107
108
108
You can’t perform that action at this time.
0 commit comments