summaryrefslogtreecommitdiff
path: root/StardewModdingAPI
diff options
context:
space:
mode:
Diffstat (limited to 'StardewModdingAPI')
-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))
{