From 43583603622998ecf3d7a7c90681be3faed7b77e Mon Sep 17 00:00:00 2001 From: coolGi Date: Sun, 30 Oct 2022 19:34:27 +1030 Subject: [PATCH] Swapped out the bottom 2 buttons on the update screen --- .../com/seibel/lod/common/wrappers/gui/UpdateModScreen.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/main/java/com/seibel/lod/common/wrappers/gui/UpdateModScreen.java b/common/src/main/java/com/seibel/lod/common/wrappers/gui/UpdateModScreen.java index 60e640f59..78b3f7197 100644 --- a/common/src/main/java/com/seibel/lod/common/wrappers/gui/UpdateModScreen.java +++ b/common/src/main/java/com/seibel/lod/common/wrappers/gui/UpdateModScreen.java @@ -81,12 +81,12 @@ public class UpdateModScreen extends Screen { }) ); this.addBtn( - new Button(this.width / 2 + 5, this.height / 2 + 65, 150, 20, translate(ModInfo.ID + ".updater.later"), (btn) -> { + new Button(this.width / 2 - 155, this.height / 2 + 65, 150, 20, translate(ModInfo.ID + ".updater.later"), (btn) -> { this.onClose(); }) ); this.addBtn( - new Button(this.width / 2 - 155, this.height / 2 + 65, 150, 20, translate(ModInfo.ID + ".updater.never"), (btn) -> { + new Button(this.width / 2 + 5, this.height / 2 + 65, 150, 20, translate(ModInfo.ID + ".updater.never"), (btn) -> { Config.Client.AutoUpdater.enableAutoUpdater.set(false); this.onClose(); })