Fix early sorting bug that meant the file deduping was causing an error, to, well, not cause it, so we can get to an error screen.
Signed-off-by: cpw <cpw+github@weeksfamily.ca>
This commit is contained in:
parent
f54998a6b7
commit
5a7facc20f
1 changed files with 5 additions and 0 deletions
|
@ -74,6 +74,11 @@ public class ModSorter
|
|||
} catch (EarlyLoadingException ele) {
|
||||
earlyLoadingException = ele;
|
||||
ms.sortedList = Collections.emptyList();
|
||||
try {
|
||||
ms.buildUniqueList();
|
||||
} catch (EarlyLoadingException ele2) {
|
||||
//IGNORE
|
||||
}
|
||||
}
|
||||
return LoadingModList.of(ms.modFiles, ms.sortedList, earlyLoadingException);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue