aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-02-24 20:27:58 -0500
committerUnknown <jtsshieh@outlook.com>2018-02-24 20:27:58 -0500
commit85f4ec00efb5c90cc2408e5bcc96bf01e3de2a10 (patch)
tree02e07422a4347a078effb9648731b2f60def1361 /commands/Fun
parent089974a6a78bb425db8ebd18de6855a294b88295 (diff)
downloadPokeBot-85f4ec00efb5c90cc2408e5bcc96bf01e3de2a10.tar.gz
PokeBot-85f4ec00efb5c90cc2408e5bcc96bf01e3de2a10.tar.bz2
PokeBot-85f4ec00efb5c90cc2408e5bcc96bf01e3de2a10.zip
FIXY FIXY
Diffstat (limited to 'commands/Fun')
-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);
});
};