From 1c90be1fb7379db4cb9136e89a3a8e9746f7b642 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 23 Mar 2024 23:31:12 -0400 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 aa8b0e77..a85ade04 100644 --- a/commands/games-mp/tic-tac-toe.js +++ b/commands/games-mp/tic-tac-toe.js @@ -48,7 +48,7 @@ module.exports = class TicTacToeCommand extends Command { let choice; if (opponent.bot && !userTurn) { // eslint-disable-next-line new-cap - choice = ComputerMove(this.convertBoard(sides), { aiPlayer: 'o', huPlayer: 'x' }, 'Hard'); + choice = ComputerMove(this.convertBoard(sides), { aiPlayer: 'O', huPlayer: 'X' }, 'Hard'); } else { await msg.say(stripIndents` ${user}, which side do you pick? Type \`end\` to forfeit.