Skip to content

Commit

Permalink
Changed detection order to better reflect next run environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Assistant committed May 26, 2019
1 parent 82b43d8 commit 018659c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ModAssistant/Pages/Mods.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ private void CheckInstalledMods()
}

List<string> empty = new List<string>();
CheckInstallDir("Plugins", empty);
CheckInstallDir("Libs", empty);
GetBSIPAVersion();
CheckInstallDir("IPA/Pending/Plugins", empty);
CheckInstallDir("IPA/Pending/Libs", empty);
CheckInstallDir("Plugins", empty);
CheckInstallDir("Libs", empty);
}

private void CheckInstallDir(string directory, List<string> blacklist)
Expand Down

0 comments on commit 018659c

Please sign in to comment.