diff --git a/build.gradle b/build.gradle index 9b1465fe1..4eced0bdf 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ if(hasProperty('buildnumber')){ } minecraft { - version = "1.11.2-13.20.0.2259" + version = "1.11.2-13.20.0.2299" runDir = "idea" mappings = "snapshot_20161126" @@ -47,9 +47,9 @@ repositories { } dependencies { - compile "net.darkhax.tesla:Tesla:1.11-1.3.0.51" - deobfCompile "mezz.jei:jei_1.11.2:4.2.4.229" - deobfCompile "org.cyclops.commoncapabilities:CommonCapabilities:1.11.2-1.3.0-81" + compile "net.darkhax.tesla:Tesla:1.11-1.3.0.52" + deobfCompile "mezz.jei:jei_1.11.2:4.3.5.277" + deobfCompile "org.cyclops.commoncapabilities:CommonCapabilities:1.11.2-1.3.3-115" } processResources { diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/config/GuiFactory.java b/src/main/java/de/ellpeck/actuallyadditions/mod/config/GuiFactory.java index 14f51ad58..6e03b6497 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/config/GuiFactory.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/config/GuiFactory.java @@ -23,6 +23,16 @@ public class GuiFactory implements IModGuiFactory{ } + @Override + public boolean hasConfigGui(){ + return true; + } + + @Override + public GuiScreen createConfigGui(GuiScreen parentScreen){ + return new GuiConfiguration(parentScreen); + } + @Override public Class mainConfigGuiClass(){ return GuiConfiguration.class;