aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--commands/Fun/story.js4
-rw-r--r--commands/Utility/userinfo.js1
2 files changed, 3 insertions, 2 deletions
diff --git a/commands/Fun/story.js b/commands/Fun/story.js
index 8835248..8e0f361 100644
--- a/commands/Fun/story.js
+++ b/commands/Fun/story.js
@@ -8,8 +8,8 @@ exports.run = async (bot, msg) => {
const stories =
[
- 'Story 1 Alee says it\'s coming soon!.',
- `Story 2 ${selectedUser1.username} jumps into the window then ${selectedUser2.username} saves ${selectedUser1.username} and ${selectedUser3.username} claps.`,
+ 'In progress story.',
+ `${selectedUser1.username} jumps into the window. Then, ${selectedUser2.username} saves ${selectedUser1.username}, and ${selectedUser3.username} claps.`,
];
const storySelected = [Math.floor(Math.random() * stories.length)];
const { RichEmbed } = require('discord.js');
diff --git a/commands/Utility/userinfo.js b/commands/Utility/userinfo.js
index d4ccb91..9862b1b 100644
--- a/commands/Utility/userinfo.js
+++ b/commands/Utility/userinfo.js
@@ -14,6 +14,7 @@ exports.run = async (bot, msg) => {
.addField('Account Creation Date', user.user.createdAt)
.addField('Join Guild Date', user.joinedAt)
.addField('Names', 'Display Name: ' + user.displayName + `\nUsername: ${user.user.tag}`)
+ .setFooter('PokeBot Beta')
);
};