Fix options loading for Check

This commit is contained in:
Matt Nadareski
2023-10-11 16:37:10 -04:00
parent 367d0c104b
commit 705b5f1049
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
### WIP (xxxx-xx-xx)
- Fix options loading for Check
### 2.7.1 (2023-10-11)
- Add pull-all flag for Check

View File

@@ -185,7 +185,7 @@ namespace MPF.Core.Utilities
}
// Include seed info file
if (args[startIndex].StartsWith("-l=") || args[startIndex].StartsWith("--load-seed="))
else if (args[startIndex].StartsWith("-l=") || args[startIndex].StartsWith("--load-seed="))
{
string seedInfo = args[startIndex].Split('=')[1];
info = InfoTool.CreateFromFile(seedInfo);