Skip to content

Commit 2e62e53

Browse files
committed
fix: 🐛 if not is_zip
1 parent 83d9410 commit 2e62e53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/mod_loader/mod_loader.gd

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func _init() -> void:
8080
for mod_path in mod_paths:
8181
var is_zip := _ModLoaderPath.is_zip(mod_path)
8282

83-
if not is_in_editor and not ModLoaderStore.ml_options.load_from_unpacked:
83+
if not is_zip and not is_in_editor and not ModLoaderStore.ml_options.load_from_unpacked:
8484
ModLoaderLog.debug("The mod from path \"%s\" is not loaded because loading from mods-unpacked has been disabled in the options." % mod_path, LOG_NAME)
8585
continue
8686

0 commit comments

Comments
 (0)