Skip to content

Commit

Permalink
don't warn if asterix is used in savefilepath (#1289)
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed Sep 28, 2022
1 parent b256ee4 commit 59d072d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ARKBreedingStats/settings/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ private void btAddSavegameFileLocation_Click(object sender, EventArgs e)
/// </summary>
private void CheckSaveImportPath(string filePath)
{
if (!filePath.EndsWith(".ark"))
if (!filePath.EndsWith(".ark") && !filePath.Contains("*"))
{
MessageBoxes.ShowMessageBox($"The file location must include the path and the filename of the save file. The set path\n{filePath}\ndoesn't end with \".ark\" and seems to miss the file name.", "Possibly wrong path", MessageBoxIcon.Warning);
}
Expand Down

0 comments on commit 59d072d

Please sign in to comment.