Skip to content

Commit

Permalink
Merge pull request #43 from YeOldeMiller/main
Browse files Browse the repository at this point in the history
Fix missed path update
  • Loading branch information
Razzmatazzz authored Jul 29, 2022
2 parents 321cefe + b49eeca commit 84d87b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SaveBackup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public List<string> ActivePaths
var paths = new List<string>();
foreach (var savePath in Properties.Settings.Default.SaveFolders)
{
paths.Add($@"{savePath}\{this.Type.ToLower()}s\{this.FileName}");
paths.Add($@"{savePath}\{this.Type.ToLower()}s_local\{this.FileName}");
}
return paths;
}
Expand Down

0 comments on commit 84d87b5

Please sign in to comment.