From bc1e035467f4959535c05d2fa52faede308ba0d3 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 3 Jan 2021 10:09:23 -0500 Subject: [PATCH] Fix --- commands/random-res/boredom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random-res/boredom.js b/commands/random-res/boredom.js index e298a1e2..38b90f15 100644 --- a/commands/random-res/boredom.js +++ b/commands/random-res/boredom.js @@ -22,7 +22,7 @@ module.exports = class BoredomCommand extends Command { async run(msg) { try { const { body } = await request.get('https://www.boredapi.com/api/activity/'); - return msg.say(`${body.activity} (${body.type}})`); + return msg.say(`${body.activity} (${body.type})`); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); }