Fix subdirectory loading properly: mods will load inside eclipse..
This commit is contained in:
parent
38094093b3
commit
0ae4c2e4a9
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ public class Loader
|
|||
{
|
||||
if (file.isDirectory()) {
|
||||
log.finest(String.format("Recursing into subdirectory %s", file.getName()));
|
||||
foundAModClass|=attemptDirLoad(file,path+".");
|
||||
foundAModClass|=attemptDirLoad(file,path+file.getName()+".");
|
||||
continue;
|
||||
}
|
||||
Matcher fname = modClass.matcher(file.getName());
|
||||
|
|
Loading…
Reference in a new issue