From 7acfede111e192530e62568b4ad10f24a6c9f186 Mon Sep 17 00:00:00 2001 From: MysterD Date: Wed, 16 Mar 2022 09:36:14 -0700 Subject: [PATCH] Fix crash with mod folders that don't have actors --- src/pc/mods/mod.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pc/mods/mod.c b/src/pc/mods/mod.c index 295bbf120..79b37b297 100644 --- a/src/pc/mods/mod.c +++ b/src/pc/mods/mod.c @@ -167,8 +167,7 @@ static bool mod_load_files(struct Mod* mod, char* modName, char* fullPath) { struct dirent* dir = NULL; DIR* d = opendir(actorsPath); if (!d) { - LOG_ERROR("Could not open directory '%s'", actorsPath); - return false; + return true; } // iterate mod directory