diff --git a/commands/games-mp/tic-tac-toe.js b/commands/games-mp/tic-tac-toe.js index 14e0ea88..7b492929 100644 --- a/commands/games-mp/tic-tac-toe.js +++ b/commands/games-mp/tic-tac-toe.js @@ -89,7 +89,7 @@ module.exports = class TicTacToeCommand extends Command { this.client.games.delete(msg.channel.id); if (winner === 'time') return msg.say('Game ended due to inactivity.'); return msg.say(stripIndents` - ${winner !== 'tie' ? `Congrats, ${winner}!` : 'Oh... The cat won.'} + ${winner === 'tie' ? 'Oh... The cat won.' : `Congrats, ${winner}!`} ${this.displayBoard(sides)} `);