summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-09-05 00:51:32 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-09-05 00:51:32 -0400
commit220f3bc578399412ecff0ab350b3b94ebe1d7ea0 (patch)
tree4dba73ff8e97502fcac929e9782419934e097cf7 /src
parent4ce572fca6b37851b6070d82f1f0a2b94a04df44 (diff)
downloadSMAPI-220f3bc578399412ecff0ab350b3b94ebe1d7ea0.tar.gz
SMAPI-220f3bc578399412ecff0ab350b3b94ebe1d7ea0.tar.bz2
SMAPI-220f3bc578399412ecff0ab350b3b94ebe1d7ea0.zip
set max game version to prepare for upcoming SDV 1.5 update
Diffstat (limited to 'src')
-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 b7977fb7..485e35fa 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -57,7 +57,7 @@ namespace StardewModdingAPI
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.4.1");
/// <summary>The maximum supported version of Stardew Valley.</summary>
- public static ISemanticVersion MaximumGameVersion { get; } = null;
+ public static ISemanticVersion MaximumGameVersion { get; } = new GameVersion("1.4.5");
/// <summary>The target game platform.</summary>
public static GamePlatform TargetPlatform { get; } = EarlyConstants.Platform;