Skip to content

Commit

Permalink
Merge pull request MegaMek#6110 from SJuliez/remove-SBF-button
Browse files Browse the repository at this point in the history
Hide "connect to SBF game" button
  • Loading branch information
SJuliez authored Oct 17, 2024
2 parents d04a514 + ab3b4b4 commit 58aea90
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions megamek/src/megamek/client/ui/swing/MegaMekGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -333,11 +333,13 @@ private void showMainMenu() {
addBag(scenB, gridbag, c);
c.gridy++;
addBag(connectB, gridbag, c);
// Connecting to an SBF game is not useful (yet)
// c.gridy++;
// addBag(connectSBF, gridbag, c);
c.gridy++;
addBag(connectSBF, gridbag, c);
c.gridy++;
// addBag(botB, gridbag, c);
// c.gridy++;
// Connecting as a bot was deemed not useful; leaving this for now to uncomment if necessary
// addBag(botB, gridbag, c);
// c.gridy++;
addBag(editB, gridbag, c);
c.gridy++;
addBag(skinEditB, gridbag, c);
Expand Down

0 comments on commit 58aea90

Please sign in to comment.