diff --git a/src/pc/mods/mod.c b/src/pc/mods/mod.c index 1ef68260..f672ad85 100644 --- a/src/pc/mods/mod.c +++ b/src/pc/mods/mod.c @@ -517,12 +517,10 @@ bool mod_load(struct Mods* mods, char* basePath, char* modName) { // print LOG_INFO(" %s", mod->name); - if (isDirectory) { - for (int i = 0; i < mod->fileCount; i++) { - struct ModFile* file = &mod->files[i]; - mod_cache_add(mod, file, true); - LOG_INFO(" - %s", file->relativePath); - } + for (int i = 0; i < mod->fileCount; i++) { + struct ModFile* file = &mod->files[i]; + mod_cache_add(mod, file, true); + LOG_INFO(" - %s", file->relativePath); } return true;