aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun/story.js
diff options
context:
space:
mode:
authorpokesudenk <thisis@notarealema.il>2018-02-24 20:30:47 -0500
committerpokesudenk <thisis@notarealema.il>2018-02-24 20:30:47 -0500
commitfb86857f8de42c2eec2d0488ea6037c562666dd9 (patch)
tree472ad7936dcbaefd29e563ec783e6c21a453ab15 /commands/Fun/story.js
parent0c0c1d837c7e5bb49fb9bddfde884f43f442a949 (diff)
parentf6c8e529eb06a3d1121feeebb5de6c97eefbc571 (diff)
downloadPokeBot-fb86857f8de42c2eec2d0488ea6037c562666dd9.tar.gz
PokeBot-fb86857f8de42c2eec2d0488ea6037c562666dd9.tar.bz2
PokeBot-fb86857f8de42c2eec2d0488ea6037c562666dd9.zip
Merge branch 'master' of https://github.com/PokeWorld/PokeBot
Diffstat (limited to 'commands/Fun/story.js')
-rw-r--r--commands/Fun/story.js8
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);
});
};