Skip to content

Commit

Permalink
Made player symbol menu more intuitive
Browse files Browse the repository at this point in the history
It is now explicit that X plays first and O second
  • Loading branch information
iByteABit256 authored Mar 28, 2024
1 parent ad09c02 commit dc324a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/startpage/startpage.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export default function StartScreen({ onStart }) {
{aiModeSelected && (
<>
<div className={styles.horizontalButtonsContainer}>
<button onClick={() => createAiGame("X")}>Play as X</button>
<button onClick={() => createAiGame("O")}>Play as O</button>
<button onClick={() => createAiGame("X")}>Play first (X)</button>
<button onClick={() => createAiGame("O")}>Play second (O)</button>
<button onClick={() => createAiGame()}>Random</button>
</div>
<button onClick={() => setAiModeSelected(false)}>Back</button>
Expand Down

0 comments on commit dc324a3

Please # to comment.