diff --git a/conf/build.gradle.forge b/conf/build.gradle.forge index 5c80cc3..68ad728 100644 --- a/conf/build.gradle.forge +++ b/conf/build.gradle.forge @@ -28,11 +28,21 @@ { compile 'net.minecraft:launchwrapper:1.9' compile 'org.ow2.asm:asm-debug-all:4.1' - compile 'org.scala-lang:scala-library:2.10.2' - compile 'org.scala-lang:scala-compiler:2.10.2' + compile 'com.typesafe.akka:akka-actor_2.11:2.3.3' + compile 'com.typesafe:config:1.2.1' + compile 'org.scala-lang:jline:2.11' + compile 'org.scala-lang:scala-actors-migration_2.11:1.1.0' + compile 'org.scala-lang:scala-compiler:2.11.1' + compile 'org.scala-lang.plugins:scala-continuations-library_2.11:1.0.2' + compile 'org.scala-lang.plugins:scala-continuations-plugin_2.11.1:1.0.2' + compile 'org.scala-lang:scala-library:2.11.1' + compile 'org.scala-lang:scala-parser-combinators_2.11:1.0.1' + compile 'org.scala-lang:scala-reflect:2.11.1' + compile 'org.scala-lang:scala-swing_2.11:1.0.1' + compile 'org.scala-lang:scala-xml_2.11:1.0.2' compile 'net.sf.jopt-simple:jopt-simple:4.5' compile 'lzma:lzma:0.0.1' - compile 'com.mojang:realms:1.2.4' + compile 'com.mojang:realms:1.2.9' compile 'org.apache.commons:commons-compress:1.8.1' compile 'org.apache.httpcomponents:httpclient:4.3.3' compile 'commons-logging:commons-logging:1.1.3' diff --git a/src/main/java/cpw/mods/fml/client/config/GuiEditArray.java b/src/main/java/cpw/mods/fml/client/config/GuiEditArray.java index f950d38..7a8334b 100644 --- a/src/main/java/cpw/mods/fml/client/config/GuiEditArray.java +++ b/src/main/java/cpw/mods/fml/client/config/GuiEditArray.java @@ -129,7 +129,7 @@ } else if (button.id == 2001) { - this.currentValues = (String[]) configElement.getDefaults(); + this.currentValues = configElement.getDefaults(); this.entryList = new GuiEditArrayEntries(this, this.mc, this.configElement, this.beforeValues, this.currentValues); } else if (button.id == 2002) diff --git a/src/main/resources/fmlversion.properties b/src/main/resources/fmlversion.properties index 97eb367..d5293c5 100644 --- a/src/main/resources/fmlversion.properties +++ b/src/main/resources/fmlversion.properties @@ -1,6 +1,6 @@ fmlbuild.major.number=7 fmlbuild.minor.number=10 -fmlbuild.revision.number=1 -fmlbuild.build.number=50 +fmlbuild.revision.number=10 +fmlbuild.build.number=51 fmlbuild.mcversion=1.7.10 fmlbuild.mcpversion=9.05