Change **: to :** when bolding lists

This commit is contained in:
Daniel Odendahl Jr
2018-09-07 20:47:28 +00:00
parent 2ce04ef2f0
commit 1ac0c405e4
32 changed files with 342 additions and 342 deletions
+3 -3
View File
@@ -15,8 +15,8 @@ module.exports = class QuizCommand extends Command {
memberName: 'quiz',
description: 'Answer a quiz question.',
details: stripIndents`
**Types**: ${types.join(', ')}
**Difficulties**: ${difficulties.join(', ')}
**Types:** ${types.join(', ')}
**Difficulties:** ${difficulties.join(', ')}
`,
args: [
{
@@ -57,7 +57,7 @@ module.exports = class QuizCommand extends Command {
await msg.reply(stripIndents`
**You have 15 seconds to answer this question.**
${decodeURIComponent(body.results[0].question)}
${shuffled.map((answer, i) => `**${choices[i]}**. ${answer}`).join('\n')}
${shuffled.map((answer, i) => `**${choices[i]}.** ${answer}`).join('\n')}
`);
const filter = res => res.author.id === msg.author.id && choices.includes(res.content.toUpperCase());
const msgs = await msg.channel.awaitMessages(filter, {