aboutsummaryrefslogtreecommitdiff
path: root/bot.js
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-02-23 22:40:14 -0500
committerAlee <alee14498@gmail.com>2018-02-23 22:40:14 -0500
commit68f1244c0759576134b094fdc5f4c973720e0616 (patch)
tree1b7529b9743638cf5e75245daa7d4d4ec233478a /bot.js
parent5c12d46a250e59b74284e93c025f9a277901ec8c (diff)
downloadPokeBot-68f1244c0759576134b094fdc5f4c973720e0616.tar.gz
PokeBot-68f1244c0759576134b094fdc5f4c973720e0616.tar.bz2
PokeBot-68f1244c0759576134b094fdc5f4c973720e0616.zip
Fixing things
Diffstat (limited to 'bot.js')
-rw-r--r--bot.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot.js b/bot.js
index e598cea..740bd8b 100644
--- a/bot.js
+++ b/bot.js
@@ -54,7 +54,7 @@ bot.on('ready', () => {
});
bot.on('guildMemberAdd', (member) => {
- bot.channels.get('416633835216830495').send(`Welcome to the server **${member.user.tag}**! Make sure to read the rules! You are our ${member.guild.memberCount}st member`);
+ bot.channels.get('416633835216830495').send(`Welcome to the server **${member.user.tag}**! Make sure to read the rules! We now have ${member.guild.memberCount} members.`);
const role = member.guild.roles.find('name', 'Trainers');
member.addRole(role);
});