From 24b37007754e45616f517cfb4f717eb55cb1bdf4 Mon Sep 17 00:00:00 2001 From: John Facey Date: Fri, 17 Jun 2022 18:00:49 -0500 Subject: [PATCH] staging bold fixes --- commands/answer.js | 2 +- commands/get.js | 2 +- commands/ping.js | 2 +- commands/random.js | 2 +- commands/slang.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/commands/answer.js b/commands/answer.js index b567157..1edd218 100644 --- a/commands/answer.js +++ b/commands/answer.js @@ -12,6 +12,6 @@ module.exports = { var question = encodeURIComponent(args.join(" ")); var answerData = await libFlayer.getAnswer(question); - message.reply(`Question: ${question} \n\nAnswer: ${answerData.text}\n\n Source: ${answerData.source}`); + message.reply(`**Question**: ${question} \n\n**Answer**: ${answerData.text}\n\n **Source**: ${answerData.source}`); } }; \ No newline at end of file diff --git a/commands/get.js b/commands/get.js index f3873ad..8f2e5d4 100644 --- a/commands/get.js +++ b/commands/get.js @@ -12,7 +12,7 @@ module.exports = { var search = args[0]; var catName = "All"; var feedArray = libFlayer.getFeeds(); - message.reply(`Retrieving: [${catName}] (${feedArray[search].link})`); + message.reply(`**Retrieving**: [${catName}] (${feedArray[search].link})`); } }; \ No newline at end of file diff --git a/commands/ping.js b/commands/ping.js index bb910ca..47f5e9c 100644 --- a/commands/ping.js +++ b/commands/ping.js @@ -2,6 +2,6 @@ module.exports = { name: 'ping', description: 'Ping!', execute(message) { - message.channel.send('Pong.'); + message.channel.send('**Pong.**'); } }; \ No newline at end of file diff --git a/commands/random.js b/commands/random.js index d4fb80f..4fddd60 100644 --- a/commands/random.js +++ b/commands/random.js @@ -15,7 +15,7 @@ module.exports = { var feedArray = libFlayer.getFeeds(category); var i = Math.floor(Math.random() * (feedArray.length - 0) + 0 ); - message.reply(`Retrieving: [${catName}](${feedArray[i].link})`); + message.reply(`**Retrieving**: [${catName}](${feedArray[i].link})`); } }; diff --git a/commands/slang.js b/commands/slang.js index 9e40859..88fdbb0 100644 --- a/commands/slang.js +++ b/commands/slang.js @@ -12,6 +12,6 @@ module.exports = { var question = encodeURIComponent(args.join(" ")); var slangData = await libFlayer.getSlang(question); - message.reply(`Term: ${question}\n\n Answer: ${slangData.definition}\n\n Example: ${slangData.example}`); + message.reply(`**Term**: ${question}\n\n **Answer**: ${slangData.definition}\n\n**Example**: ${slangData.example}`); } }; \ No newline at end of file