diff options
| author | pokesudenk <thisis@notarealema.il> | 2018-02-24 12:33:49 -0500 |
|---|---|---|
| committer | pokesudenk <thisis@notarealema.il> | 2018-02-24 12:33:49 -0500 |
| commit | 42adea6764c88c197e9f6d63fa5fc5ede72ed06e (patch) | |
| tree | 01e1d6d93afa011bfb68ca321bac9691d3ee582c | |
| parent | 1af3c64c1ff725ae67a4f449275b7f5bd28f4c25 (diff) | |
| download | PokeBot-42adea6764c88c197e9f6d63fa5fc5ede72ed06e.tar.gz PokeBot-42adea6764c88c197e9f6d63fa5fc5ede72ed06e.tar.bz2 PokeBot-42adea6764c88c197e9f6d63fa5fc5ede72ed06e.zip | |
trying something :thinking:
| -rw-r--r-- | commands/cureboredom.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/commands/cureboredom.js b/commands/cureboredom.js index 0c93fc8..9c3a0dd 100644 --- a/commands/cureboredom.js +++ b/commands/cureboredom.js @@ -1,8 +1,13 @@ exports.run = (bot, msg, args) => { + if (args === 'list') { + msg.channel.send(ideas.join('\n')); + }; + + const ideas = [ 'Pokemon Go to the polls :ballot_box:', 'Consuming Maccas :fries:', - 'Fighting Astralmod :right_facing_fist:', + 'Fighting AstralMod :right_facing_fist:', 'Joining a team :handshake:', 'Have a battle :crossed_swords:', ]; |
