From e457b55f6c3f2790b967537d0e550a807dc6c754 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 9 Jan 2021 13:40:35 -0500 Subject: [PATCH] Fix --- commands/games-mp/tic-tac-toe.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }