summaryrefslogtreecommitdiff
path: root/src/SMAPI.Installer
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-02-17 00:38:59 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-02-17 00:38:59 -0500
commit52867bb634af4706abe41557728c58b27b69f34d (patch)
treea6e97d15281eee4f1a7caf286367e2ea6eef9fb5 /src/SMAPI.Installer
parent4d9f8368169c39d05d43ca2258a4757af2e85480 (diff)
downloadSMAPI-52867bb634af4706abe41557728c58b27b69f34d.tar.gz
SMAPI-52867bb634af4706abe41557728c58b27b69f34d.tar.bz2
SMAPI-52867bb634af4706abe41557728c58b27b69f34d.zip
fix uninstall script not confirming success on Linux/Mac
Diffstat (limited to 'src/SMAPI.Installer')
-rw-r--r--src/SMAPI.Installer/InteractiveInstaller.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/SMAPI.Installer/InteractiveInstaller.cs b/src/SMAPI.Installer/InteractiveInstaller.cs
index 43d31eea..b7e698ad 100644
--- a/src/SMAPI.Installer/InteractiveInstaller.cs
+++ b/src/SMAPI.Installer/InteractiveInstaller.cs
@@ -364,8 +364,13 @@ namespace StardewModdingApi.Installer
else
this.PrintColor("SMAPI is removed! If you configured Steam to launch SMAPI, don't forget to clear your launch options.", ConsoleColor.DarkGreen);
}
- else if (action == ScriptAction.Install)
- this.PrintColor("SMAPI is installed! Launch the game the same way as before to play with mods.", ConsoleColor.DarkGreen);
+ else
+ {
+ if (action == ScriptAction.Install)
+ this.PrintColor("SMAPI is installed! Launch the game the same way as before to play with mods.", ConsoleColor.DarkGreen);
+ else
+ this.PrintColor("SMAPI is removed! Launch the game the same way as before to play without mods.", ConsoleColor.DarkGreen);
+ }
Console.ReadKey();
}