diff --git a/src/dusk/modding/mod_loader.cpp b/src/dusk/modding/mod_loader.cpp index b5ba972eaa..1f81978176 100644 --- a/src/dusk/modding/mod_loader.cpp +++ b/src/dusk/modding/mod_loader.cpp @@ -351,7 +351,7 @@ static std::string_view getFileNameWithoutExtension(const std::string_view fileN static DllLocateResult LocateDllInBundle(ModBundle& bundle) { std::string dllEntry, dllFallback; for (const auto name : bundle.getFileNames()) { - if (!name.ends_with(".dll"sv)) { + if (!name.ends_with(".dll"sv) && !name.ends_with(".dylib"sv) && !name.ends_with(".so"sv)) { continue; }