diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-03-08 15:51:00 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-03-08 15:51:00 -0500 |
commit | edbbb7cff41ba0656bd17774a3d5d99dd321dd9b (patch) | |
tree | 1b406e250e550dc4ba8f64fad36bf9b86f2cae3f /src/StardewModdingAPI | |
parent | d47cf433f39ddfa77c7903bca676f725052a2592 (diff) | |
download | SMAPI-edbbb7cff41ba0656bd17774a3d5d99dd321dd9b.tar.gz SMAPI-edbbb7cff41ba0656bd17774a3d5d99dd321dd9b.tar.bz2 SMAPI-edbbb7cff41ba0656bd17774a3d5d99dd321dd9b.zip |
update old instructions about resetting config file
Diffstat (limited to 'src/StardewModdingAPI')
-rw-r--r-- | src/StardewModdingAPI/Program.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/StardewModdingAPI/Program.cs b/src/StardewModdingAPI/Program.cs index 95161538..bf3c86fb 100644 --- a/src/StardewModdingAPI/Program.cs +++ b/src/StardewModdingAPI/Program.cs @@ -116,10 +116,10 @@ namespace StardewModdingAPI if (this.Settings.DeveloperMode) { this.Monitor.ShowTraceInConsole = true; - this.Monitor.Log($"You configured SMAPI to run in developer mode. The console may be much more verbose. You can disable developer mode by installing the non-developer version of SMAPI, or by editing or deleting {Constants.ApiConfigPath}.", LogLevel.Warn); + this.Monitor.Log($"You configured SMAPI to run in developer mode. The console may be much more verbose. You can disable developer mode by installing the non-developer version of SMAPI, or by editing {Constants.ApiConfigPath}.", LogLevel.Warn); } if (!this.Settings.CheckForUpdates) - this.Monitor.Log($"You configured SMAPI to not check for updates. Running an old version of SMAPI is not recommended. You can enable update checks by editing or deleting {Constants.ApiConfigPath}.", LogLevel.Warn); + this.Monitor.Log($"You configured SMAPI to not check for updates. Running an old version of SMAPI is not recommended. You can enable update checks by reinstalling SMAPI or editing {Constants.ApiConfigPath}.", LogLevel.Warn); if (!this.Monitor.WriteToConsole) this.Monitor.Log("Writing to the terminal is disabled because the --no-terminal argument was received. This usually means launching the terminal failed.", LogLevel.Warn); |