aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun/cureboredom.js
diff options
context:
space:
mode:
authorJustin <jtsshieh@outlook.com>2019-11-02 11:02:19 -0400
committerJustin <jtsshieh@outlook.com>2019-11-02 11:02:19 -0400
commit7031fa12ba79281edc49df972311c13ad0e8fa53 (patch)
tree60410a33fe45add85a9dc962c975be478f3f8cff /commands/Fun/cureboredom.js
parent106530d5dc53166632a6a0ecc8930eb2b1ed4bfd (diff)
downloadPokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.tar.gz
PokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.tar.bz2
PokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.zip
es-lint settings added + linted all files
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.'
};