summaryrefslogtreecommitdiff
path: root/src/SMAPI
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-03-16 19:09:45 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-03-16 19:09:45 -0400
commitd8cf9103472cf6f4328754d3b6e776694fc5f764 (patch)
treebc7af6cbaf8f11da0a87e74cf1bf7d14d6fc9b9d /src/SMAPI
parentec0039ff7fcdd676e38e53c7ac8eac165fa996e8 (diff)
downloadSMAPI-d8cf9103472cf6f4328754d3b6e776694fc5f764.tar.gz
SMAPI-d8cf9103472cf6f4328754d3b6e776694fc5f764.tar.bz2
SMAPI-d8cf9103472cf6f4328754d3b6e776694fc5f764.zip
set max game version to prepare for 1.4 release
Diffstat (limited to 'src/SMAPI')
-rw-r--r--src/SMAPI/Constants.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index d90eecf7..820579b8 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.36");
/// <summary>The maximum supported version of Stardew Valley.</summary>
- public static ISemanticVersion MaximumGameVersion { get; } = null;
+ public static ISemanticVersion MaximumGameVersion { get; } = new GameVersion("1.3.36");
/// <summary>The target game platform.</summary>
public static GamePlatform TargetPlatform => (GamePlatform)Constants.Platform;