Fix csv string vs list of strings. Thanks immibis. Closes #334

This commit is contained in:
Christian 2014-01-09 14:55:52 -05:00
parent 6cdc949de7
commit f6476c1970

View file

@ -54,7 +54,7 @@ public class FMLContainer extends DummyModContainer implements WorldAccessContai
meta.name="Forge Mod Loader";
meta.version=Loader.instance().getFMLVersionString();
meta.credits="Made possible with help from many people";
meta.authorList=Arrays.asList("cpw, LexManos");
meta.authorList=Arrays.asList("cpw", "LexManos");
meta.description="The Forge Mod Loader provides the ability for systems to load mods " +
"from the file system. It also provides key capabilities for mods to be able " +
"to cooperate and provide a good modding environment. ";