]> git.lizzy.rs Git - BoundingBoxOutlineReloaded.git/blobdiff - src/main/java/com/irtimaled/bbor/mixin/client/gui/MixinGuiOptions.java
Cleanup code
[BoundingBoxOutlineReloaded.git] / src / main / java / com / irtimaled / bbor / mixin / client / gui / MixinGuiOptions.java
index dac769ca3cb66c8a53cd6108b2296301229abcce..f559d6665ad214653a38a666bb361726dffaea39 100644 (file)
@@ -15,10 +15,10 @@ public class MixinGuiOptions extends GuiScreen {
     private void initGui(CallbackInfo ci) {
         //shuffle middle buttons up by 12 px to make space
         int top = this.height / 6 + 42;
-        for(GuiButton button : buttons) {
+        for (GuiButton button : buttons) {
             if (button.id != 200 && button.y >= top)
                 button.y -= 12;
         }
-        this.addButton(new SettingsScreenButton(200, this.width / 2 - 155, top + 84, 150, 20, "BBOR", this));
+        this.addButton(new SettingsScreenButton(200, this.width / 2 - 155, top + 84, 150, "BBOR", this));
     }
 }