Skip to content

Commit

Permalink
Trying to get promptForSide() working with a parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
riverwanderer committed Sep 10, 2023
1 parent 4a7add4 commit 5e33313
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ protected void launch() {
return;
}

String newSide;
newSide = promptForSide("");
String newSide = null;
newSide = promptForSide(newSide);
if ((newSide == null) || newSide.equals(mySide)) {
return;
}
Expand Down

0 comments on commit 5e33313

Please sign in to comment.