From c4a877d925135243cbbd6b6ae8964941ffcf2d01 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 9 Jan 2021 18:33:28 -0500 Subject: [PATCH] Fix lint --- 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 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)} `);