fix incorrect error when a mod has no manifest

This commit is contained in:
Jesse Plamondon-Willard 2018-06-09 16:24:21 -04:00
parent 6e0dcddeb8
commit 94e59482fc
1 changed files with 2 additions and 1 deletions

View File

@ -40,6 +40,7 @@ namespace StardewModdingAPI.Framework.ModLoading
? "its manifest is invalid."
: "it doesn't have a manifest.";
}
else
manifest = new Manifest(rawManifest);
}
catch (SParseException ex)