Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/preflight/loader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ function loadMods(modsDirectory)

-- Function to process each directory (including subdirectories) with depth tracking
local function processDirectory(directory, depth, flags)
if depth > 3 or directory..'/' == SMODS.path then
if depth > 3 or SMODS.path:sub(-#(directory..'/')) == directory..'/' then
return
end

Expand Down