diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-23 13:16:01 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-23 13:16:01 -0400 |
commit | f7e22b551a353dbc1896add569d8666e4447aace (patch) | |
tree | 185a8b1a5a32b2d56c3f5a6d3c59427599e08826 | |
parent | 74be6f13114e8e4cb8421a684009d160c4e861f1 (diff) | |
download | SMAPI-f7e22b551a353dbc1896add569d8666e4447aace.tar.gz SMAPI-f7e22b551a353dbc1896add569d8666e4447aace.tar.bz2 SMAPI-f7e22b551a353dbc1896add569d8666e4447aace.zip |
remove outdated message about beta release branch (#333)
-rw-r--r-- | src/StardewModdingAPI/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI/Program.cs b/src/StardewModdingAPI/Program.cs index ff73962e..50ab4e25 100644 --- a/src/StardewModdingAPI/Program.cs +++ b/src/StardewModdingAPI/Program.cs @@ -138,7 +138,7 @@ namespace StardewModdingAPI // validate game version if (Constants.GameVersion.IsOlderThan(Constants.MinimumGameVersion)) { - this.Monitor.Log($"Oops! You're running Stardew Valley {Constants.GameVersion}, but the oldest supported version is {Constants.MinimumGameVersion}. Please update your game before using SMAPI. If you have the beta version on Steam, you may need to opt out to get the latest non-beta updates.", LogLevel.Error); + this.Monitor.Log($"Oops! You're running Stardew Valley {Constants.GameVersion}, but the oldest supported version is {Constants.MinimumGameVersion}. Please update your game before using SMAPI.", LogLevel.Error); this.PressAnyKeyToExit(); return; } |