diff options
| author | pokesudenk <thisis@notarealema.il> | 2018-02-24 20:30:47 -0500 |
|---|---|---|
| committer | pokesudenk <thisis@notarealema.il> | 2018-02-24 20:30:47 -0500 |
| commit | fb86857f8de42c2eec2d0488ea6037c562666dd9 (patch) | |
| tree | 472ad7936dcbaefd29e563ec783e6c21a453ab15 /commands/Fun | |
| parent | 0c0c1d837c7e5bb49fb9bddfde884f43f442a949 (diff) | |
| parent | f6c8e529eb06a3d1121feeebb5de6c97eefbc571 (diff) | |
| download | PokeBot-fb86857f8de42c2eec2d0488ea6037c562666dd9.tar.gz PokeBot-fb86857f8de42c2eec2d0488ea6037c562666dd9.tar.bz2 PokeBot-fb86857f8de42c2eec2d0488ea6037c562666dd9.zip | |
Merge branch 'master' of https://github.com/PokeWorld/PokeBot
Diffstat (limited to 'commands/Fun')
| -rw-r--r-- | commands/Fun/story.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/Fun/story.js b/commands/Fun/story.js index 3f29d38..4f421c5 100644 --- a/commands/Fun/story.js +++ b/commands/Fun/story.js @@ -13,10 +13,10 @@ exports.run = async (bot, msg) => { ]; const storySelected = [Math.floor(Math.random() * stories.length)]; const embed = new Discord.RichEmbed() - .setColor(0x00ae86) - .setTitle(`Pokebot Storytime`) - .setDescription(stories[storySelected]) - .setFooter('PokeBot Beta'); + .setColor(0x00ae86) + .setTitle('Pokebot Storytime') + .setDescription(stories[storySelected]) + .setFooter('PokeBot Beta'); msg.channel.send(embed); }); }; |
