Skip to content

Commit

Permalink
feat: expose the contents of the board as a string array
Browse files Browse the repository at this point in the history
  • Loading branch information
briancorbinxyz committed Sep 9, 2024
1 parent c41af38 commit 4b3bdd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ private boolean getGameBoardHasChain(Integer playerId) {

@Override
public String[] content() {
String [] contents = new String[dimension() * dimension()];
String[] contents = new String[dimension() * dimension()];
for (int i = 0; i < contents.length; i++) {
contents[i] = getPlayerMarkerAtIndex(i);
}
Expand Down

0 comments on commit 4b3bdd8

Please sign in to comment.