diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-02-24 12:41:17 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-02-24 12:41:17 -0500 |
| commit | f1e068947f099e35460cf7df89b9b29228acfa11 (patch) | |
| tree | 1359ccbbae679284467eb71a92d477a48b05d913 | |
| parent | bec6fde1f990d6ece8953a57982fed53df58673b (diff) | |
| parent | 93aad984238819f1aece9648bf3eba1ed24eb1a9 (diff) | |
| download | PokeBot-f1e068947f099e35460cf7df89b9b29228acfa11.tar.gz PokeBot-f1e068947f099e35460cf7df89b9b29228acfa11.tar.bz2 PokeBot-f1e068947f099e35460cf7df89b9b29228acfa11.zip | |
Merge remote-tracking branch 'origin/master'
| -rw-r--r-- | commands/cureboredom.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/commands/cureboredom.js b/commands/cureboredom.js index e029b0b..e011c80 100644 --- a/commands/cureboredom.js +++ b/commands/cureboredom.js @@ -7,9 +7,7 @@ exports.run = (bot, msg, args) => { 'Have a battle :crossed_swords:', ]; - if (args[0] === 'list') { - 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)]); }; |
