From f6476c1970bcb2a48979bacbd0b5ac462ee528c4 Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 9 Jan 2014 14:55:52 -0500 Subject: [PATCH] Fix csv string vs list of strings. Thanks immibis. Closes #334 --- fml/src/main/java/cpw/mods/fml/common/FMLContainer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fml/src/main/java/cpw/mods/fml/common/FMLContainer.java b/fml/src/main/java/cpw/mods/fml/common/FMLContainer.java index f4064423d..e5e977e14 100644 --- a/fml/src/main/java/cpw/mods/fml/common/FMLContainer.java +++ b/fml/src/main/java/cpw/mods/fml/common/FMLContainer.java @@ -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. ";