Merge pull request #18 from EducatedStrikeCart/Fix_LastColumnUnableToFill

Fix a bug preventing last column of Connect Four from being filled
This commit is contained in:
Katie Savage 2023-02-03 13:30:04 -08:00 committed by GitHub
commit 7549d7bdd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 9 deletions

View file

@ -289,13 +289,13 @@ The [GameState.cs file is in this repository](1-complete/ConnectFour/Shared/Game
```csharp
<nav>
<span title="Click to play a piece" @onclick="() => PlayPiece(0)">🔽</span>
<span title="Click to play a piece" @onclick="() => PlayPiece(1)">🔽</span>
<span title="Click to play a piece" @onclick="() => PlayPiece(2)">🔽</span>
<span title="Click to play a piece" @onclick="() => PlayPiece(3)">🔽</span>
<span title="Click to play a piece" @onclick="() => PlayPiece(4)">🔽</span>
<span title="Click to play a piece" @onclick="() => PlayPiece(5)">🔽</span>
<span title="Click to play a piece" @onclick="() => PlayPiece(6)">🔽</span>
<span title="Click to play a piece" @onclick="() => PlayPiece(7)">🔽</span>
</nav>
```