Browse Source

1.11 push

Jared 8 years ago
parent
commit
65a9b96e83

+ 3 - 3
build.gradle

@@ -12,7 +12,7 @@ buildscript {
 }
 apply plugin: 'net.minecraftforge.gradle.forge'
 
-version = "1.0.4"
+version = "2.0.4"
 group= "us.getfluxed.controlling" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
 archivesBaseName = "Controlling"
 
@@ -26,9 +26,9 @@ jar {
     }
 }
 minecraft {
-    version = "1.10.2-12.18.1.2075"
+    version = "1.11.2-13.20.0.2233"
     runDir = "run"
-    mappings = "snapshot_20160518"
+    mappings = "snapshot_20161220"
 }
 
 dependencies {

+ 1 - 1
src/main/java/us/getfluxed/controlsearch/client/gui/GuiNewControls.java

@@ -49,7 +49,7 @@ public class GuiNewControls extends GuiControls {
     public void initGui() {
         this.keyBindingList = new GuiNewKeyBindingList(this, this.mc);
         this.buttonList.add(new GuiButton(200, this.width / 2 - 155, this.height - 29, 150, 20, I18n.format("gui.done")));
-        this.buttonReset = this.func_189646_b(new GuiButton(201, this.width / 2 - 155 + 160, this.height - 29, 150, 20, I18n.format("controls.resetAll")));
+        this.buttonReset = this.addButton(new GuiButton(201, this.width / 2 - 155 + 160, this.height - 29, 150, 20, I18n.format("controls.resetAll")));
         this.screenTitle = I18n.format("controls.title");
         int i = 0;
         

+ 1 - 1
src/main/java/us/getfluxed/controlsearch/reference/Reference.java

@@ -7,7 +7,7 @@ public class Reference {
 
     public static final String MODID = "controlling";
     public static final String NAME = "Controlling";
-    public static final String VERSION = "1.0.4";
+    public static final String VERSION = "2.0.4";
 
 
 }