From dea1e8392a3e66bcb1c4780f9ee049a4c30f6220 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 10 Oct 2017 16:44:36 +0000 Subject: [PATCH] Beep --- commands/games/tic-tac-toe.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games/tic-tac-toe.js b/commands/games/tic-tac-toe.js index 33d177cd..dc275c5a 100644 --- a/commands/games/tic-tac-toe.js +++ b/commands/games/tic-tac-toe.js @@ -42,7 +42,7 @@ module.exports = class TicTacToeCommand extends Command { while (!winner && taken.length < 9) { const user = userTurn ? msg.author : opponent; const sign = userTurn ? 'X' : 'O'; - await msg.code(stripIndents` + await msg.say(stripIndents` ${user}, which side do you pick? \`\`\` ${sides[0]} | ${sides[1]} | ${sides[2]}