Skip to content

Commit

Permalink
Reintroduced accidentally removed side check.
Browse files Browse the repository at this point in the history
  • Loading branch information
uckelman committed Sep 16, 2023
1 parent 277415c commit d4bc10e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,7 @@ public void setup(boolean gameStarting) {
GameModule.setTempUserId(null);
players.clear();
}
// getLaunchButton().setVisible(gameStarting && getMySide() != null);
getLaunchButton().setEnabled(gameStarting);
getLaunchButton().setEnabled(gameStarting && getMySide() != null);
pickedSide = false;
}

Expand Down

0 comments on commit d4bc10e

Please sign in to comment.