Skip to content

Commit

Permalink
stage2/ml9: adjust restart ui wording
Browse files Browse the repository at this point in the history
  • Loading branch information
Sychic committed Jun 19, 2024
1 parent 3df7c68 commit 552c6cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void loadFromMixin(Path gameDir) {
LogManager.getLogger().warn("Failed to download dedicated jar:", e);
} finally {
ui.complete();
ForkedRestartUI restartUI = new ForkedRestartUI("Restart Required!", "One of the mods you have installed requires Essential. To complete the installation process, please restart minecraft.");
ForkedRestartUI restartUI = new ForkedRestartUI("Restart Required", "One of the mods you have installed requires Essential. To complete the installation process, please restart Minecraft.");
restartUI.show();
restartUI.waitForClose();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void show() {
final JPanel buttons = new JPanel();
buttons.setOpaque(false);
buttons.setLayout(new BoxLayout(buttons, BoxLayout.X_AXIS));
buttons.add(makeButton("Restart", COLOR_PRIMARY_BUTTON, COLOR_BUTTON_HOVER, () -> closedFuture.complete(true)));
buttons.add(makeButton("Quit Game", COLOR_PRIMARY_BUTTON, COLOR_BUTTON_HOVER, () -> closedFuture.complete(true)));
content.add(buttons);

content.add(Box.createVerticalStrut(32 - Y_SHADOW));
Expand Down

0 comments on commit 552c6cb

Please sign in to comment.