summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoryn Aaron <zoryn4163@gmail.com>2016-03-22 20:46:35 -0400
committerZoryn Aaron <zoryn4163@gmail.com>2016-03-22 20:46:35 -0400
commitaf4557958e14398e16392f9147bca388ea4cdf9f (patch)
treeb3e49bde3bdd3125d49ed29f89c9c8ce3b361747
parentd31456fdc7cd55576523bc32ff8a7c2c18d66710 (diff)
downloadSMAPI-af4557958e14398e16392f9147bca388ea4cdf9f.tar.gz
SMAPI-af4557958e14398e16392f9147bca388ea4cdf9f.tar.bz2
SMAPI-af4557958e14398e16392f9147bca388ea4cdf9f.zip
yup.
-rw-r--r--StardewModdingAPI/Constants.cs2
-rw-r--r--StardewModdingAPI/Program.cs4
2 files changed, 1 insertions, 5 deletions
diff --git a/StardewModdingAPI/Constants.cs b/StardewModdingAPI/Constants.cs
index dde4193c..41daa905 100644
--- a/StardewModdingAPI/Constants.cs
+++ b/StardewModdingAPI/Constants.cs
@@ -48,7 +48,7 @@ namespace StardewModdingAPI
public const int MinorVersion = 38;
- public const int PatchVersion = 6;
+ public const int PatchVersion = 7;
public const string Build = "Alpha";
diff --git a/StardewModdingAPI/Program.cs b/StardewModdingAPI/Program.cs
index 66c25c33..3f6ef6ce 100644
--- a/StardewModdingAPI/Program.cs
+++ b/StardewModdingAPI/Program.cs
@@ -290,10 +290,6 @@ namespace StardewModdingAPI
continue;
}
- // This will need to be redone once a new minor version comes out so that we don't load
- // the manifest in twice, but for now we need to make sure that older manifests are
- // compatible with the new manifest : config format.
- manifest = JsonConvert.DeserializeObject<Manifest>(t);
manifest = (Manifest)Config.InitializeConfig(s, manifest);
if (string.IsNullOrEmpty(manifest.EntryDll))
{