aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun/cureboredom.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Fun/cureboredom.js')
-rw-r--r--commands/Fun/cureboredom.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/commands/Fun/cureboredom.js b/commands/Fun/cureboredom.js
index 4b99406..f9ae256 100644
--- a/commands/Fun/cureboredom.js
+++ b/commands/Fun/cureboredom.js
@@ -26,20 +26,22 @@ exports.run = (bot, msg, args) => {
'Messing with Rich Presence :gear:',
'Making videos :movie_camera:',
'Taking pictures :camera:',
- 'Suggesting things for the server :dancers:',
+ 'Suggesting things for the server :dancers:'
];
- if (args[0] === 'list') return msg.channel.send(ideas.join('\n'));
+ if (args[0] === 'list') {
+ return msg.channel.send(ideas.join('\n'));
+ }
msg.channel.send(ideas[Math.floor(Math.random() * ideas.length)]);
};
exports.conf = {
aliases: ['cboredom'],
- guildOnly: true,
+ guildOnly: true
};
exports.help = {
name: 'cureboredom',
- description: 'Finds you something to do.',
+ description: 'Finds you something to do.'
};