From b7c4bdf62d0e562e6d5b7f36f1668dbe2d381dc6 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 26 Jan 2018 21:47:22 +0000 Subject: [PATCH] Fix --- commands/games/captcha-quiz.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/commands/games/captcha-quiz.js b/commands/games/captcha-quiz.js index 6dfcc7f1..0a4ff215 100644 --- a/commands/games/captcha-quiz.js +++ b/commands/games/captcha-quiz.js @@ -30,7 +30,10 @@ module.exports = class CaptchaQuizCommand extends Command { ctx.font = '26px Captcha'; ctx.rotate(-0.05); ctx.strokeText(text, 15, 26); - await msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'captcha-quiz.png' }] }); + await msg.say( + '**You have 15 seconds, what does the captcha say?**', + { files: [{ attachment: canvas.toBuffer(), name: 'captcha-quiz.png' }] } + ); const msgs = await msg.channel.awaitMessages(res => res.author.id === msg.author.id, { max: 1, time: 15000