Skip to content

Commit

Permalink
Game selector panel fixes: update button text (#12771)
Browse files Browse the repository at this point in the history
The button text was updated recently with the mistaken thought
the buttons only appeared in bot servers. The buttons actually
show up in all cases (single game, hosted game, bot game),
hence "upload save game" does not make sense in all of those context.
  • Loading branch information
DanVanAtta authored Jul 25, 2024
1 parent 8f856ad commit 5eb87c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ public final class GameSelectorPanel extends JPanel implements Observer {
private final JButton loadNewGame =
new JButtonBuilder()
.title("Select Game")
.toolTip("Start a new game or load an autosave from the host server.")
.toolTip("Start a new game (autosaves on bot servers will appear here)")
.build();

private final JButton loadSavedGame =
new JButtonBuilder()
.title("Upload Saved Game")
.title("Saved Game")
.toolTip("Open a game saved on your computer.")
.build();

Expand Down

0 comments on commit 5eb87c9

Please sign in to comment.