Fix mods not being recursively enabled

Fixes #12290
pull/56/head
rubenwardy 2022-05-08 14:01:32 +01:00
parent e0e897832c
commit 9824a451bb
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ function pkgmgr.enable_mod(this, toset)
-- Push the dependencies of the dependency onto the stack
local depends = pkgmgr.get_dependencies(mod_to_enable.path)
for i = 1, #depends do
if not enabled_mods[name] then
if not enabled_mods[depends[i]] then
sp = sp+1
to_enable[sp] = depends[i]
end