fix 'please update your game' error not pausing before exit

This commit is contained in:
Jesse Plamondon-Willard 2017-02-24 15:06:38 -05:00
parent fd2d7d714d
commit ba55ed34ca
1 changed files with 1 additions and 0 deletions

View File

@ -145,6 +145,7 @@ namespace StardewModdingAPI
if (Constants.GameVersion.IsOlderThan(Constants.MinimumGameVersion))
{
this.Monitor.Log($"Oops! You're running Stardew Valley {Constants.GameDisplayVersion}, but the oldest supported version is {Constants.MinimumGameVersion}. Please update your game before using SMAPI. If you're on the Steam beta channel, note that the beta channel may not receive the latest updates.", LogLevel.Error);
this.PressAnyKeyToExit();
return;
}