diff options
| author | Alee14 <Alee14498@gmail.com> | 2017-11-10 19:05:09 -0500 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2017-11-10 19:05:09 -0500 |
| commit | 7b00dd543ba5270241605a1dcf5ff7f06d94e291 (patch) | |
| tree | cb9087ae46d5cca7f51b346fc9ae7246cf2595cc /src | |
| parent | f937d7cdd0e2d7c067df24faf9af4d3c6ebad660 (diff) | |
| download | AleeBot-7b00dd543ba5270241605a1dcf5ff7f06d94e291.tar.gz AleeBot-7b00dd543ba5270241605a1dcf5ff7f06d94e291.tar.bz2 AleeBot-7b00dd543ba5270241605a1dcf5ff7f06d94e291.zip | |
Removed abwelcome and added the git command
Diffstat (limited to 'src')
| -rw-r--r-- | src/bot.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -59,7 +59,7 @@ client.on("message", function(message) { var embed = new Discord.RichEmbed() .setAuthor('AleeBot ' + abVersion + ` Help and on ${client.guilds.size} servers`, "https://cdn.discordapp.com/avatars/282547024547545109/6c147a444ae328c38145ef1f74169e38.png?size=2048") .setDescription("Every command you input into AleeBot is `" + config.prefix + "`") - .addField("- General Commands", "ping\nuptime", true) + .addField("- General Commands", "ping\nuptime\ngit", true) .setFooter("AleeCorp Copyright 2017") .setColor("#1fd619") message.channel.sendEmbed(embed); @@ -83,6 +83,10 @@ client.on("message", function(message) { message.channel.send(":clock3: AleeBot has been up for " + hours + " hours, " + uptimeMinutes + " minutes, and " + uptimeSeconds + " seconds.") } + if (command === 'git') { + message.author.send("I can see you want to contribute to this project.\nHere's the link: https://github.com/AleeCorp/AleeBot") + } + }); client.login(config.abtoken).catch(function() { console.log("[X] Login failed. Please contact Alee14#9928 or email him at alee14498@gmail.com."); |
