summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-07-29 12:31:29 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-07-29 12:31:29 -0400
commit670ff77363bae56c7514b83e7c126cacd318f440 (patch)
tree815ccce806994a0d21a8bd74661ca7106391e778
parent7ba3f9bade1dd67221d21f1d9be7375cd2ee26c3 (diff)
downloadSMAPI-670ff77363bae56c7514b83e7c126cacd318f440.tar.gz
SMAPI-670ff77363bae56c7514b83e7c126cacd318f440.tar.bz2
SMAPI-670ff77363bae56c7514b83e7c126cacd318f440.zip
remove 'use SMAPI 2.5.5' message when running Stardew Valley 1.2 (#569)
-rw-r--r--src/SMAPI/Program.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs
index a9546233..92e7ca17 100644
--- a/src/SMAPI/Program.cs
+++ b/src/SMAPI/Program.cs
@@ -152,10 +152,7 @@ namespace StardewModdingAPI
// validate game version
if (Constants.GameVersion.IsOlderThan(Constants.MinimumGameVersion))
{
- if (Constants.GameVersion.IsBetween("1.2.30", "1.2.33") && Constants.ApiVersion.IsBetween("2.6-beta", "2.6")) // TODO: remove once SMAPI 2.6 is out of beta
- this.Monitor.Log($"Oops! You're running Stardew Valley {Constants.GameVersion}. Make sure you install SMAPI 2.5.5 instead (SMAPI 2.6 beta is only for Stardew Valley 1.3 beta).", LogLevel.Error);
- else
- 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.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;
}