From af4557958e14398e16392f9147bca388ea4cdf9f Mon Sep 17 00:00:00 2001 From: Zoryn Aaron Date: Tue, 22 Mar 2016 20:46:35 -0400 Subject: yup. --- StardewModdingAPI/Constants.cs | 2 +- StardewModdingAPI/Program.cs | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) (limited to 'StardewModdingAPI') 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(t); manifest = (Manifest)Config.InitializeConfig(s, manifest); if (string.IsNullOrEmpty(manifest.EntryDll)) { -- cgit