This commit is contained in:
Fierelier 2019-10-25 11:44:58 +02:00
parent ebee8880f9
commit a4ed8974fd
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ def walkMods(modDir):
for dir in dirs:
if dir[0] == "-": continue
if dir[0] == "[" and dir[-1:] == "]":
for mod in getMods(p(root,dir)): yield mod
for mod in walkMods(p(root,dir)): yield mod
continue
yield p(root,dir)