aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlee14 <alee14498@gmail.com>2017-03-27 17:17:49 -0400
committerAlee14 <alee14498@gmail.com>2017-03-27 17:17:49 -0400
commit7d9ed5aee6fc3d5a3ae9968f5dcd295d9f5b85f7 (patch)
tree1d601be11acb5039fd99ae3b440309e254245b76
parent5a90919f4fa59bfd1e481ea8ba0bc4e42b1b6cf5 (diff)
downloadAleeBot-7d9ed5aee6fc3d5a3ae9968f5dcd295d9f5b85f7.tar.gz
AleeBot-7d9ed5aee6fc3d5a3ae9968f5dcd295d9f5b85f7.tar.bz2
AleeBot-7d9ed5aee6fc3d5a3ae9968f5dcd295d9f5b85f7.zip
Added new command: aleebot:owner!
-rw-r--r--bot.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/bot.js b/bot.js
index fe022c4..418b50a 100644
--- a/bot.js
+++ b/bot.js
@@ -31,7 +31,14 @@ client.on('message', message => {
client.on('message', message => {
if(message.content === 'aleebot:help'){
- message.channel.sendMessage ('aleebot:profile\naleebot:updates\naleebot:ping\naleebot:pong');
+ message.channel.sendMessage ('aleebot:profile\naleebot:updates\naleebot:ping\naleebot:pong\naleebot:owner');
+ }
+
+});
+
+client.on('message', message => {
+ if(message.content === 'aleebot:owner'){
+ message.reply('The person who made this is Alee14!');
}
});