Skip to content

Commit

Permalink
Corrected an indent level.
Browse files Browse the repository at this point in the history
  • Loading branch information
riverwanderer committed Sep 7, 2023
1 parent af03551 commit f030ebf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ protected String promptForSide() {
final ArrayList<String> alreadyTaken = new ArrayList<>();
String newSide = "";

while (true) { // Loops until a valid side is found (repeats side check to minimuse race condition window)
while (newSide != null) { // Loops until a valid side is found or op is canceled (repeats side check to minimuse race condition window)

for (final PlayerInfo p : players) {
alreadyTaken.add(p.side);
Expand Down

0 comments on commit f030ebf

Please sign in to comment.