diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-03 22:18:44 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-03-03 22:18:44 -0500 |
commit | a290a2fa5229a1105942300c5ccd471a34915758 (patch) | |
tree | 9a5980fea0199b81c5172b1bb6ea37a051efb789 /src/SMAPI/Program.cs | |
parent | f9dc901994c1a8b17e22de3f68ceb038965e0cc5 (diff) | |
download | SMAPI-a290a2fa5229a1105942300c5ccd471a34915758.tar.gz SMAPI-a290a2fa5229a1105942300c5ccd471a34915758.tar.bz2 SMAPI-a290a2fa5229a1105942300c5ccd471a34915758.zip |
mark Stardew Valley 1.3 incompatible in SMAPI 2.5.x to reduce confusion when it's released (#453)
Diffstat (limited to 'src/SMAPI/Program.cs')
-rw-r--r-- | src/SMAPI/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs index fec03d6f..22bceafd 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -177,7 +177,7 @@ namespace StardewModdingAPI } if (Constants.MaximumGameVersion != null && Constants.GameVersion.IsNewerThan(Constants.MaximumGameVersion)) { - this.Monitor.Log($"Oops! You're running Stardew Valley {Constants.GameVersion}, but this version of SMAPI is only compatible up to Stardew Valley {Constants.MaximumGameVersion}. Please check for a newer version of SMAPI.", LogLevel.Error); + this.Monitor.Log($"Oops! You're running Stardew Valley {Constants.GameVersion}, but this version of SMAPI is only compatible up to Stardew Valley {Constants.MaximumGameVersion}. Please check for a newer version of SMAPI: https://smapi.io.", LogLevel.Error); this.PressAnyKeyToExit(); return; } |