diff --git a/commands/games-mp/tic-tac-toe.js b/commands/games-mp/tic-tac-toe.js index 77b21384..25d2c05e 100644 --- a/commands/games-mp/tic-tac-toe.js +++ b/commands/games-mp/tic-tac-toe.js @@ -99,7 +99,7 @@ module.exports = class TicTacToeCommand extends Command { } verifyWin(sides) { - const evaluated = tictactoe.boardEvaluate(this.convertBoard(sides), { computer: 'o', opponent: 'x '}); + const evaluated = tictactoe.boardEvaluate(this.convertBoard(sides)); if (evaluated === 'win' || evaluated === 'loss' || evaluated === 'tie') return true; return false; }