summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-05-16 02:01:21 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-05-16 02:01:21 -0400
commit28986e76b81fe4505574e4fada3d86ffa457f085 (patch)
treef74bfd558204ee6bbaa6186975bf248239e82d1b /src
parent75af88cf0d09b0ebc9275968c9e5abd3ea179ea6 (diff)
downloadSMAPI-28986e76b81fe4505574e4fada3d86ffa457f085.tar.gz
SMAPI-28986e76b81fe4505574e4fada3d86ffa457f085.tar.bz2
SMAPI-28986e76b81fe4505574e4fada3d86ffa457f085.zip
tweak renamed folder per discussion with Omegasis (#513)
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI.Installer/InteractiveInstaller.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Installer/InteractiveInstaller.cs b/src/SMAPI.Installer/InteractiveInstaller.cs
index 4d9bc984..ace560e5 100644
--- a/src/SMAPI.Installer/InteractiveInstaller.cs
+++ b/src/SMAPI.Installer/InteractiveInstaller.cs
@@ -360,7 +360,7 @@ namespace StardewModdingApi.Installer
// special case: rename Omegasis' SaveBackup mod
{
DirectoryInfo oldFolder = new DirectoryInfo(Path.Combine(modsDir.FullName, "SaveBackup"));
- DirectoryInfo newFolder = new DirectoryInfo(Path.Combine(modsDir.FullName, "SaveBackup (Omegasis)"));
+ DirectoryInfo newFolder = new DirectoryInfo(Path.Combine(modsDir.FullName, "AdvancedSaveBackup"));
FileInfo manifest = new FileInfo(Path.Combine(oldFolder.FullName, "manifest.json"));
if (manifest.Exists && !newFolder.Exists && File.ReadLines(manifest.FullName).Any(p => p.IndexOf("Omegasis", StringComparison.InvariantCultureIgnoreCase) != -1))
{