diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-02-07 22:34:18 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-02-07 22:34:18 -0500 |
commit | ce060f30e69744ef4129998473220bf011c89fee (patch) | |
tree | a89506473e3ef951163bc9f9c5825cabd455fdd2 /src/SMAPI/Constants.cs | |
parent | d8dd4b4c18f571c6e8a7264f0168a69fd04bce70 (diff) | |
download | SMAPI-ce060f30e69744ef4129998473220bf011c89fee.tar.gz SMAPI-ce060f30e69744ef4129998473220bf011c89fee.tar.bz2 SMAPI-ce060f30e69744ef4129998473220bf011c89fee.zip |
set max game version to avoid confusion when 1.3.35 releases
Diffstat (limited to 'src/SMAPI/Constants.cs')
-rw-r--r-- | src/SMAPI/Constants.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index dde8f2a0..f8d1638e 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -26,7 +26,7 @@ namespace StardewModdingAPI public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.32"); /// <summary>The maximum supported version of Stardew Valley.</summary> - public static ISemanticVersion MaximumGameVersion { get; } = null; + public static ISemanticVersion MaximumGameVersion { get; } = new GameVersion("1.3.33"); /// <summary>The target game platform.</summary> public static GamePlatform TargetPlatform => (GamePlatform)Constants.Platform; |