X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=tictactoe.js;h=f9b357bf3202dfbc84443818dbd3626958e5f307;hb=4a744b0425333284979ef76206c457ff7dcf5907;hp=1f559bde50c1a91be83cd2847d6d6cefe990650b;hpb=10bc834cbdd0fe4556fca4a79aafa4e88174312d;p=empires-server diff --git a/tictactoe.js b/tictactoe.js index 1f559bd..f9b357b 100644 --- a/tictactoe.js +++ b/tictactoe.js @@ -7,7 +7,7 @@ class TicTacToe extends Game { constructor(id) { super(id); this.moves = []; - this.board = Array(9).fill(null); + this.board = Array(9).fill(""); } /* Returns Boolean indicating whether move was legal and added. */