aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--commands/cureboredom.js50
1 files changed, 24 insertions, 26 deletions
diff --git a/commands/cureboredom.js b/commands/cureboredom.js
index 3a2ead8..e029b0b 100644
--- a/commands/cureboredom.js
+++ b/commands/cureboredom.js
@@ -1,28 +1,26 @@
exports.run = (bot, msg, args) => {
- if (args[0] === 'list') {
- msg.channel.send(ideas.join('\n'));
- };
-
-
- const ideas = [
- 'Pokemon Go to the polls :ballot_box:',
- 'Consuming Maccas :fries:',
- 'Fighting AstralMod :right_facing_fist:',
- 'Joining a team :handshake:',
- 'Have a battle :crossed_swords:',
- ];
+ const ideas = [
+ 'Pokemon Go to the polls :ballot_box:',
+ 'Consuming Maccas :fries:',
+ 'Fighting AstralMod :right_facing_fist:',
+ 'Joining a team :handshake:',
+ 'Have a battle :crossed_swords:',
+ ];
- msg.channel.send(ideas[Math.floor(Math.random() * ideas.length)]);
- };
-
- exports.conf = {
- aliases: [],
- guildOnly: true,
- };
-
- exports.help = {
- name: 'cureboredom',
- description: 'Finds you something to do.',
- category: 'Fun',
- };
- \ No newline at end of file
+ if (args[0] === 'list') {
+ msg.channel.send(ideas.join('\n'));
+ }
+
+ msg.channel.send(ideas[Math.floor(Math.random() * ideas.length)]);
+};
+
+exports.conf = {
+ aliases: [],
+ guildOnly: true,
+};
+
+exports.help = {
+ name: 'cureboredom',
+ description: 'Finds you something to do.',
+ category: 'Fun',
+};