This commit is contained in:
Dragon Fire
2021-01-09 18:33:28 -05:00
parent 5c672fd4d6
commit c4a877d925
+1 -1
View File
@@ -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)}
`);