Actually fix the corrupt JSON problem

This commit is contained in:
Christian 2012-08-23 17:27:53 -04:00
parent 4f6861ee50
commit 02792c45e6
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public class MetadataCollection
catch (InvalidSyntaxException e)
{
FMLLog.log(Level.SEVERE, e, "The mcmod.info file in %s cannot be parsed as valid JSON. It will be ignored", sourceName);
return null;
return new MetadataCollection();
}
catch (Exception e)
{