summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/GameVersion.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-10-18 10:59:57 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-10-18 10:59:57 -0400
commit2ff937397163f0ad5940b636bc7312ac747d9c39 (patch)
treea5c0daa505423868b00bc6d55156361b08bf63fa /src/SMAPI/Framework/GameVersion.cs
parent79118316065a01322d8ea12a14589ec016794c32 (diff)
downloadSMAPI-2ff937397163f0ad5940b636bc7312ac747d9c39.tar.gz
SMAPI-2ff937397163f0ad5940b636bc7312ac747d9c39.tar.bz2
SMAPI-2ff937397163f0ad5940b636bc7312ac747d9c39.zip
fix compatibility check crashing for players with SDV 1.08
Diffstat (limited to 'src/SMAPI/Framework/GameVersion.cs')
-rw-r--r--src/SMAPI/Framework/GameVersion.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/GameVersion.cs b/src/SMAPI/Framework/GameVersion.cs
index 48159f61..1884afe9 100644
--- a/src/SMAPI/Framework/GameVersion.cs
+++ b/src/SMAPI/Framework/GameVersion.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Collections.Generic;
namespace StardewModdingAPI.Framework
@@ -22,6 +22,7 @@ namespace StardewModdingAPI.Framework
["1.06"] = "1.0.6",
["1.07"] = "1.0.7",
["1.07a"] = "1.0.8-prerelease1",
+ ["1.08"] = "1.0.8",
["1.11"] = "1.1.1"
};